rss-reader/migrations/2022-11-21-174138_create_users/up.sql

11 lines
236 B
SQL
Executable File

-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR NOT NULL,
email VARCHAR NOT NULL,
password VARCHAR NOT NULL,
unique_id VARCHAR NOT NULL,
UNIQUE (email),
UNIQUE (username)
)