mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-07-21 22:22:48 +01:00
12 lines
350 B
SQL
12 lines
350 B
SQL
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`)
|
|
)
|