File size: 459 Bytes
f46e223
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE public.config (
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
    invitation_code character varying,
    disable_signup boolean DEFAULT false NOT NULL
);

ALTER TABLE public.users ADD role character varying DEFAULT NULL;

ALTER TABLE public.config ADD allow_server_storage_use boolean DEFAULT false NOT NULL;