text('text')->after('content')->nullable()->comment('内容(主要用于文档类型搜索)'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('docs_content', function (Blueprint $table) { $table->dropColumn('text'); }); } }