-- TODO: add rate limiter in some form CREATE TABLE IF NOT EXISTS `members`( `id` bigint UNSIGNED NOT NULL auto_increment, `secret` varchar(256) NOT NULL, `name` varchar(255) NOT NULL, `joindate` bigint NOT NULL, `status` integer NOT NULL, `permissions` bigint UNSIGNED NOT NULL, PRIMARY KEY( `id` , `secret` ) );