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