dropColumn('text'); }); Schema::table('role_permissions', function (Blueprint $table) { $table->dropColumn('display_name'); $table->dropColumn('description'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('comments', function (Blueprint $table) { $table->longText('text')->nullable(); }); Schema::table('role_permissions', function (Blueprint $table) { $table->string('display_name')->nullable(); $table->string('description')->nullable(); }); } };