8 lines
207 B
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` )
|
|
);
|