simpler users table for now

This commit is contained in:
shockrah 2020-02-04 00:36:41 -08:00
parent f3e0570182
commit 7b8d849758
3 changed files with 11 additions and 0 deletions

View File

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE `users`;

View File

@ -0,0 +1,9 @@
-- Your SQL goes here
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) NOT NULL auto_increment,
`username` varchar(255),
`display` varchar(255),
`password` varchar(255),
`email` varchar(255),
PRIMARY KEY( `id` )
);