mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-23 23:06:36 +01:00
toml config, database storage for repositories / singletons (#6893)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS `backend_repository` (
|
||||
`repository` VARCHAR(64) NOT NULL,
|
||||
`id` VARCHAR(128) NOT NULL,
|
||||
`version` INT(11) NOT NULL,
|
||||
`data` MEDIUMTEXT NOT NULL,
|
||||
`createdTime` DATETIME NOT NULL DEFAULT Now(),
|
||||
`modifiedTime` DATETIME NOT NULL DEFAULT Now(),
|
||||
PRIMARY KEY(`repository`, `id`),
|
||||
INDEX(`repository`),
|
||||
INDEX(`id`)
|
||||
)
|
||||
Reference in New Issue
Block a user