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'); } };