ebook-manager/migrations/V1__Initial_databas.sql

10 lines
176 B
MySQL
Raw Normal View History

2018-08-03 00:09:43 +03:00
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
) ;