freed/database/migrations/1_initial.sql
2024-04-26 22:46:14 +02:00

9 lines
151 B
SQL

-- +migrate Up
CREATE table users (
id INTEGER PRIMARY KEY,
first_name text NOT NULL,
email text NOT NULL
);
-- +migrate Down
DROP TABLE users;