mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-29 16:42:25 +00:00
* Updates login table to support tickets in a way that makes more sense. * Change to snake_case as requested by Akka --------- Co-authored-by: KimLS <KimLS@peqtgc.com>
12 lines
312 B
SQL
12 lines
312 B
SQL
DROP TABLE IF EXISTS `login_tickets`;
|
|
CREATE TABLE `login_tickets` (
|
|
`id` VARCHAR(128) NOT NULL,
|
|
`login_server` TEXT NOT NULL,
|
|
`username` TEXT NOT NULL,
|
|
`account_id` INT(10) UNSIGNED NOT NULL,
|
|
`ip_address` VARCHAR(45) NOT NULL,
|
|
`expires` DATETIME NOT NULL,
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
)
|
|
ENGINE=InnoDB;
|