Skip to content
This repository was archived by the owner on Sep 8, 2019. It is now read-only.

Commit 52cfe20

Browse files
Add migrations
1 parent 98d9e68 commit 52cfe20

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

migrations/.gitkeep

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- This file should undo anything in `up.sql`
2+
DROP TABLE users
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-- Your SQL goes here
2+
CREATE TABLE users (
3+
id SERIAL PRIMARY KEY,
4+
first_name VARCHAR(255) NOT NULL,
5+
last_name VARCHAR(255) NOT NULL,
6+
banner_id INT(9) UNSIGNED NOT NULL,
7+
email VARCHAR(255)
8+
)

0 commit comments

Comments
 (0)