You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
236 B
SQL

ALTER TABLE `login`
ADD COLUMN `web_auth_token` VARCHAR(17) NULL AFTER `old_group`,
ADD COLUMN `web_auth_token_enabled` tinyint(2) NOT NULL default '0' AFTER `web_auth_token`,
ADD UNIQUE KEY `web_auth_token_key` (`web_auth_token`)
;