You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
invidious/config/sql/users.sql

30 lines
604 B
MySQL

7 years ago
-- Table: public.users
-- DROP TABLE public.users;
CREATE TABLE IF NOT EXISTS public.users
7 years ago
(
6 years ago
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,
6 years ago
CONSTRAINT users_email_key UNIQUE (email)
);
7 years ago
GRANT ALL ON TABLE public.users TO current_user;
6 years ago
-- Index: public.email_unique_idx
-- DROP INDEX public.email_unique_idx;
CREATE UNIQUE INDEX IF NOT EXISTS email_unique_idx
6 years ago
ON public.users
USING btree
(lower(email) COLLATE pg_catalog."default");