migrations reflecting previous commit's schema

This commit is contained in:
shockrah 2020-02-05 14:17:25 -08:00
parent 12b666518c
commit f08d256f4e
2 changed files with 6 additions and 6 deletions

View File

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

View File

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