2018-03-30 08:11:05 +05:30
|
|
|
-- Table: public.users
|
|
|
|
|
|
|
|
-- DROP TABLE public.users;
|
|
|
|
|
2018-11-02 20:16:45 +05:30
|
|
|
CREATE TABLE public.users
|
2018-03-30 08:11:05 +05:30
|
|
|
(
|
2018-11-02 20:16:45 +05:30
|
|
|
id text[] NOT NULL,
|
|
|
|
updated timestamp with time zone,
|
|
|
|
notifications text[],
|
|
|
|
subscriptions text[],
|
|
|
|
email text NOT NULL,
|
|
|
|
preferences text,
|
|
|
|
password text,
|
|
|
|
token text,
|
|
|
|
watched text[],
|
|
|
|
CONSTRAINT users_email_key UNIQUE (email)
|
|
|
|
);
|
2018-03-30 08:11:05 +05:30
|
|
|
|
|
|
|
GRANT ALL ON TABLE public.users TO kemal;
|
2018-11-02 20:16:45 +05:30
|
|
|
|
|
|
|
-- Index: public.email_unique_idx
|
|
|
|
|
|
|
|
-- DROP INDEX public.email_unique_idx;
|
|
|
|
|
|
|
|
CREATE UNIQUE INDEX email_unique_idx
|
|
|
|
ON public.users
|
|
|
|
USING btree
|
|
|
|
(lower(email) COLLATE pg_catalog."default");
|
|
|
|
|