freechat/server/migrations/2020-07-05-215114_members/up.sql

8 lines
207 B
SQL

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` )
);