summaryrefslogtreecommitdiffstats
path: root/config/sql/users.sql
blob: 536508a45cbc50b225a481642142a0c8268e0f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- Table: public.users

-- DROP TABLE public.users;

CREATE TABLE public.users
(
  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)
);

GRANT ALL ON TABLE public.users TO kemal;

-- 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");

;follow=1'>Update French translationv1.1.39SimonBrazell 2020-07-30Update Russian translationTotalCaesar659 2020-07-30Closes #82, closes #84.v1.1.38SimonBrazell 2020-07-29fixed little grammatical mistake German translationpixelcode 2020-07-29issue with German title, English one is betterpixelcode 2020-07-29added German translationpixelcode 2020-07-16Closes #74 - Option to manually override theme.v1.1.37SimonBrazell 2020-07-15Take emojis back to Russian translationTotalCaesar659 2020-07-15Deploy extension to MS Edge.SimonBrazell 2020-07-15Take emojis back againTotalCaesar659 2020-07-14Grammar fixesTotalCaesar659 2020-07-14Add Russian translation for store descriptionsTotalCaesar659 2020-07-14Moved Privacy Policy to wiki pageSimonBrazell 2020-07-14Add version number and description to store.mdSimonBrazell 2020-07-14Added store listing translations to localesSimonBrazell 2020-07-13Fix autoplay param & French pop-up titlev1.1.36SimonBrazell