Collections needs to honour the logged in users age rating permissionFixes #273

Known issue: #275
This commit is contained in:
Michael Green
2024-01-31 07:28:07 +11:00
committed by GitHub
parent f65408a64d
commit 5f6a71e065
10 changed files with 421 additions and 224 deletions

View File

@@ -3,4 +3,4 @@ ADD COLUMN `ValueType` INT NULL DEFAULT 0 AFTER `Setting`,
ADD COLUMN `ValueDate` DATETIME NULL DEFAULT NULL AFTER `Value`;
ALTER TABLE `GameState`
ADD COLUMN `Zipped` BOOLEAN NOT NULL DEFAULT 0;
ADD COLUMN `Zipped` BOOLEAN NOT NULL DEFAULT 0;

View File

@@ -0,0 +1,4 @@
ALTER TABLE `RomCollections`
ADD COLUMN `OwnedBy` VARCHAR(45) NULL,
ADD COLUMN `AgeGroup` INT NULL,
ADD COLUMN `AgeGroupUnclassified` BOOLEAN NULL;