mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-24 18:29:10 +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
351 B
SQL
Executable file
10 lines
No EOL
351 B
SQL
Executable file
CREATE TABLE `fso_email_confirm` (
|
|
`type` ENUM('email','password') NOT NULL DEFAULT 'email',
|
|
`email` VARCHAR(50) NULL DEFAULT NULL,
|
|
`token` VARCHAR(50) NULL DEFAULT NULL,
|
|
`expires` INT(11) NULL DEFAULT NULL
|
|
)
|
|
COMMENT='Table to control necessary email confirmation for registration or password reset.'
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
; |