rathena/sql-files/upgrades/upgrade_20200625.sql
Jittapan Pluemsumran 00d6014c8c
Web authentication token feature (#5093)
Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
Co-authored-by: Aleos <aleos89@users.noreply.github.com>
2020-06-25 03:15:58 +07:00

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`)
;