mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
10 lines
No EOL
275 B
SQL
Executable file
10 lines
No EOL
275 B
SQL
Executable file
CREATE TABLE IF NOT EXISTS `fso_db_changes` (
|
|
`id` VARCHAR(100) NOT NULL,
|
|
`filename` VARCHAR(100) NOT NULL,
|
|
`date` INT UNSIGNED NOT NULL,
|
|
`hash` VARCHAR(50) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX `filename` (`filename`)
|
|
)
|
|
COLLATE='utf8_general_ci'
|
|
ENGINE=InnoDB; |