ebook-manager/migrations/V1__Initial_databas.sql
2018-08-03 00:09:43 +03:00

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