adding in change to settings table

This commit is contained in:
akemidx 2024-03-26 16:50:39 -04:00
parent 8640cad033
commit b124b9af4d

View file

@ -18,6 +18,13 @@ class UpdateLegacyLocale extends Migration
//
$table->string('locale', 10)->nullable()->default('en-US')->change();
});
Schema::table('settings', function (Blueprint $table) {
//
$table->string('locale', 10)->nullable()->default('en-US')->change();
});
}
/**
@ -32,5 +39,9 @@ class UpdateLegacyLocale extends Migration
//
$table->string('locale', 10)->nullable()->default(config('app.locale'))->change();
});
Schema::table('settings', function (Blueprint $table) {
//
$table->string('locale', 10)->nullable()->default(config('app.locale'))->change();
});
}
}