CREATE TABLE IF NOT EXISTS `members`( `id` bigint UNSIGNED NOT NULL auto_increment, `name` varchar(255) NOT NULL, `joindate` bigint UNSIGNED NOT NULL, `status` integer NOT NULL, PRIMARY KEY( `id` ) );