mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 01:42:24 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
9 lines
No EOL
256 B
SQL
Executable file
9 lines
No EOL
256 B
SQL
Executable file
CREATE TABLE IF NOT EXISTS `fso_auth_tickets` (
|
|
`ticket_id` VARCHAR(36) NOT NULL,
|
|
`user_id` INT(10) UNSIGNED NOT NULL,
|
|
`date` INT(10) UNSIGNED NOT NULL,
|
|
`ip` VARCHAR(50) NOT NULL,
|
|
PRIMARY KEY (`ticket_id`)
|
|
)
|
|
COLLATE='utf8_general_ci'
|
|
ENGINE=InnoDB; |