migrations reflecting previous commit's schema
This commit is contained in:
parent
12b666518c
commit
f08d256f4e
@ -1,9 +1,9 @@
|
||||
-- Your SQL goes here
|
||||
CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` int(10) NOT NULL auto_increment,
|
||||
`username` varchar(255),
|
||||
`id` bigint NOT NULL auto_increment,
|
||||
`username` varchar(255) NOT NULL,
|
||||
`display` varchar(255),
|
||||
`password` varchar(255),
|
||||
`password` varchar(255) NOT NULL,
|
||||
`email` varchar(255),
|
||||
PRIMARY KEY( `id` )
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
-- Your SQL goes here
|
||||
CREATE TABLE IF NOT EXISTS `invites` (
|
||||
`id` bigint NOT NULL,
|
||||
`expires` datetime,
|
||||
`uses` numeric(9,2),
|
||||
`id` bigint UNSIGNED NOT NULL,
|
||||
`expires` bigint UNSIGNED NOT NULL,
|
||||
`uses` integer,
|
||||
PRIMARY KEY( `id` )
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user