invidious-with-companion/config/sql/users.sql

24 lines
670 B
MySQL
Raw Normal View History

2018-03-29 23:41:05 -03:00
-- Table: public.users
-- DROP TABLE public.users;
2018-08-15 14:40:42 -03:00
CREATE TABLE public.users
2018-03-29 23:41:05 -03:00
(
2018-08-15 14:40:42 -03:00
id text[] COLLATE pg_catalog."default" NOT NULL,
2018-03-29 23:41:05 -03:00
updated timestamp with time zone,
2018-03-31 21:09:27 -03:00
notifications text[] COLLATE pg_catalog."default",
2018-03-30 00:27:51 -03:00
subscriptions text[] COLLATE pg_catalog."default",
2018-03-31 12:30:17 -03:00
email text COLLATE pg_catalog."default" NOT NULL,
2018-07-18 21:07:24 -04:00
preferences text COLLATE pg_catalog."default",
2018-07-18 15:26:02 -04:00
password text COLLATE pg_catalog."default",
2018-07-20 19:41:23 -04:00
token text COLLATE pg_catalog."default",
2018-07-28 21:40:59 -04:00
watched text[] COLLATE pg_catalog."default",
2018-08-15 21:30:13 -03:00
CONSTRAINT users_email_key UNIQUE (email)
2018-03-29 23:41:05 -03:00
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.users TO kemal;