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

29 lines
540 B
MySQL

7 years ago
-- Table: public.users
-- DROP TABLE public.users;
6 years ago
CREATE TABLE 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[],
CONSTRAINT users_email_key UNIQUE (email)
);
7 years ago
GRANT ALL ON TABLE public.users TO kemal;
6 years ago
-- 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");