40 lines
1003 B
PHP
40 lines
1003 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('wechats', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->integer('user_id')->nullable()->unique();
|
|
$table->string("openid", 50)->unique();
|
|
$table->string('unionid', 50)->nullable();
|
|
$table->string('avatar')->nullable();
|
|
$table->string('nickname', 100)->nullable();
|
|
$table->tinyInteger('gender')->nullable();
|
|
$table->string('country')->nullable();
|
|
$table->string('city')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('wechats');
|
|
}
|
|
};
|