invidious-mod/config/sql/users.sql

22 行
538 B
MySQL
Raw 通常表示 履歴

2018-03-30 11:41:05 +09:00
-- Table: public.users
-- DROP TABLE public.users;
CREATE TABLE public.users
(
id text COLLATE pg_catalog."default" NOT NULL,
updated timestamp with time zone,
notifications integer,
2018-03-30 12:27:51 +09:00
subscriptions text[] COLLATE pg_catalog."default",
2018-04-01 00:30:17 +09:00
notifications_viewed timestamp with time zone,
email text COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT users_email_key UNIQUE (email),
2018-03-30 12:27:51 +09:00
CONSTRAINT users_id_key UNIQUE (id)
2018-03-30 11:41:05 +09:00
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.users TO kemal;