migrations reflecting previous commit's schema
This commit is contained in:
@@ -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` )
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user