TeleMarts / api /src /model /migrations /dump.20220406.sql
Mythus's picture
Upload 225 files
67edfce
raw
history blame contribute delete
459 Bytes
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;