string('desc')->nullable()->comment('订餐备注'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('restaurant', function (Blueprint $table) { $table->dropColumn('desc'); }); } };