invidious/config/sql/users.sql

30 lines
604 B
MySQL
Raw Normal View History

2018-03-29 19:41:05 -07:00
-- Table: public.users
-- DROP TABLE public.users;
2021-01-16 17:44:31 -08:00
CREATE TABLE IF NOT EXISTS public.users
2018-03-29 19:41:05 -07:00
(
2018-11-02 07:46:45 -07:00
updated timestamp with time zone,
notifications text[],
subscriptions text[],
email text NOT NULL,
preferences text,
password text,
token text,
watched text[],
feed_needs_update boolean,
2018-11-02 07:46:45 -07:00
CONSTRAINT users_email_key UNIQUE (email)
);
2018-03-29 19:41:05 -07:00
2021-01-16 17:44:31 -08:00
GRANT ALL ON TABLE public.users TO current_user;
2018-11-02 07:46:45 -07:00
-- Index: public.email_unique_idx
-- DROP INDEX public.email_unique_idx;
2021-01-16 17:44:31 -08:00
CREATE UNIQUE INDEX IF NOT EXISTS email_unique_idx
2018-11-02 07:46:45 -07:00
ON public.users
USING btree
(lower(email) COLLATE pg_catalog."default");