ebook-manager/migrations/V1__Initial_databas.sql

10 lines
176 B
SQL

CREATE TABLE public.users (
email text NOT NULL,
username text NOT NULL,
"password" bytea NOT NULL,
CONSTRAINT users_pkey PRIMARY KEY (email)
)
WITH (
OIDS=FALSE
) ;