This commit is contained in:
nora 2021-07-19 14:26:51 +02:00
parent dfc6771135
commit e8419c3a14
7 changed files with 205 additions and 205 deletions

View file

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

View file

@ -1,10 +1,10 @@
-- Your SQL goes here
CREATE TABLE users
(
id SERIAL NOT NULL PRIMARY KEY,
first_name TEXT NOT NULL,
last_name TEXT NOT NULL,
email TEXT NOT NULL,
created_at TIMESTAMP NOT NULL
-- Your SQL goes here
CREATE TABLE users
(
id SERIAL NOT NULL PRIMARY KEY,
first_name TEXT NOT NULL,
last_name TEXT NOT NULL,
email TEXT NOT NULL,
created_at TIMESTAMP NOT NULL
);