increments('id'); $table->integer('user_id')->unsigned()->nullable(); $table->string('openid', 64)->unique(); $table->string('nickname', 100)->nullable(); $table->integer('gender')->nullable(); $table->string('city', 175)->nullable(); $table->string('privince', 175)->nullable(); $table->string('country', 175)->nullable(); $table->string('unionid'); $table->string('avatar')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wechats'); } }