karlauth/migrations/2021-07-16-091329_add_users/up.sql
2021-07-19 14:26:51 +02:00

10 lines
No EOL
241 B
SQL

-- 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
);