mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
10 lines
351 B
MySQL
10 lines
351 B
MySQL
|
|
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
|
|||
|
|
;
|