2018-10-04 17:38:52 -04:00
|
|
|
|
2018-10-04 18:12:54 -04:00
|
|
|
DROP TABLE IF EXISTS `char_unlocks`;
|
|
|
|
|
CREATE TABLE `char_unlocks` (
|
2018-10-04 17:38:52 -04:00
|
|
|
`charid` int(10) unsigned NOT NULL,
|
2019-10-21 20:46:19 -04:00
|
|
|
`outpost_sandy` int(10) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`outpost_bastok` int(10) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`outpost_windy` int(10) unsigned NOT NULL DEFAULT 0,
|
2018-10-04 17:38:52 -04:00
|
|
|
`mog_locker` int(10) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`runic_portal` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`maw` int(10) unsigned NOT NULL DEFAULT 0,
|
2019-10-21 20:46:19 -04:00
|
|
|
`campaign_sandy` int(10) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`campaign_bastok` int(10) unsigned NOT NULL DEFAULT 0,
|
|
|
|
|
`campaign_windy` int(10) unsigned NOT NULL DEFAULT 0,
|
2018-10-04 17:38:52 -04:00
|
|
|
`homepoints` blob DEFAULT NULL,
|
2019-10-21 20:46:19 -04:00
|
|
|
`survivals` blob DEFAULT NULL,
|
2025-01-02 11:13:00 -05:00
|
|
|
`traverser_start` TIMESTAMP DEFAULT 0,
|
2022-03-26 09:40:51 -04:00
|
|
|
`traverser_claimed` int(10) unsigned NOT NULL DEFAULT 0,
|
2023-03-15 20:44:36 +01:00
|
|
|
`abyssea_conflux` blob DEFAULT NULL,
|
|
|
|
|
`waypoints` blob DEFAULT NULL,
|
|
|
|
|
`eschan_portals` blob DEFAULT NULL,
|
2022-12-15 16:23:44 -05:00
|
|
|
`claimed_deeds` blob DEFAULT NULL,
|
2023-08-09 17:05:44 -04:00
|
|
|
`unique_event` blob DEFAULT NULL,
|
2026-05-10 01:55:00 -06:00
|
|
|
`maze_vouchers` blob DEFAULT NULL,
|
|
|
|
|
`maze_runes` blob DEFAULT NULL,
|
2018-10-04 17:38:52 -04:00
|
|
|
PRIMARY KEY (`charid`)
|
2024-01-04 18:25:12 +00:00
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|