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