* renamed users schema to members basically and added foreign key ref to keys schema

This commit is contained in:
shockrah
2020-07-05 15:05:34 -07:00
parent 9c4323c0c5
commit 112c9f34cd
5 changed files with 10 additions and 16 deletions

View File

@@ -0,0 +1 @@
DROP TABLE `members`;

View File

@@ -0,0 +1,7 @@
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` )
);