dropColumn('userseed'); } }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { // Add the column back if it doesn't exist if (! Schema::hasColumn('users', 'userseed')) { $table->string('userseed')->nullable(); } }); } };