This commit is contained in:
DariusIII
2025-05-06 11:51:47 +02:00
parent f5562834b3
commit 773bc5a9e9
@@ -27,7 +27,7 @@ return new class extends Migration
{
Schema::table('users', function (Blueprint $table) {
// Add the column back if it doesn't exist
if (!Schema::hasColumn('users', 'userseed')) {
if (! Schema::hasColumn('users', 'userseed')) {
$table->string('userseed')->nullable();
}
});