text('config')->nullable()->comment('营养素配置')->after('stock')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('food', function (Blueprint $table) { $table->dropColumn('config'); }); } };