id(); $table->integer("partner_id")->unsigned(); $table->string('openid', 50)->unique(); $table->text("outlook")->comment("看法")->nullable(); $table->text("reason")->comment("原因")->nullable(); $table->text("think")->comment("认为")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('coaches'); } };