dropColumn('content'); }); Schema::table('users', function (Blueprint $table) { $table->string('email')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tutorials', function (Blueprint $table) { $table->longText('content')->after('name')->nullable()->comment('富文本内容'); }); } }