Fix schema
This commit is contained in:
@ -1,5 +1,9 @@
|
||||
create table users (
|
||||
email varchar(64) primary key,
|
||||
username varchar(64),
|
||||
password varchar(64)
|
||||
);
|
||||
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
|
||||
) ;
|
||||
|
Reference in New Issue
Block a user