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