string('name')->nullable()->comment('授课老师'); $table->text('introduce')->nullable()->comment('老师简介'); $table->string('mobile')->nullable()->comment('联系方式'); // 备注 $table->string('remark')->nullable()->comment('备注'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('teachers', function (Blueprint $table) { // }); } };