First release
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE users;
|
||||
@@ -0,0 +1 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE users (
|
||||
id INTEGER AUTO_INCREMENT NOT NULL,
|
||||
PRIMARY KEY(id),
|
||||
username VARCHAR(255) NOT NULL,
|
||||
email VARCHAR(512) NOT NULL
|
||||
);
|
||||
@@ -0,0 +1 @@
|
||||
-- Your SQL goes here
|
||||
Reference in New Issue
Block a user