-- id: simple id tracking users -- name: default name that users have to display -- date: date that they signed up -- status: online/offline/away etc. CREATE TABLE IF NOT EXISTS `users` ( `id` bigint UNSIGNED NOT NULL auto_increment, `name` varchar(255) NOT NULL, `date` bigint UNSIGNED NOT NULL, `status` integer NOT NULL, PRIMARY KEY( `id` ) );