[+] Add country override field

pull/133/head^2
Azalea 2025-03-26 16:23:49 -04:00
parent 90b259b609
commit 20ca84e5ab
2 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,9 @@ class AquaGameOptions(
@SettingField("ongeki")
var ongekiInfiniteKaika: Boolean = false,
@SettingField("profile")
var countryOverride: String = "",
)
interface AquaGameOptionsRepo : JpaRepository<AquaGameOptions, Long>

View File

@ -0,0 +1 @@
ALTER TABLE aqua_game_options ADD country_override CHAR(2) NULL;