Skip to content

Commit

Permalink
update schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
JDJGInc committed Jun 2, 2023
1 parent 1955af3 commit 0bf964b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,16 @@ CREATE TABLE public.imoog (
);


--
-- Name: invalidation_config; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.invalidation_config (
entity_id bigint NOT NULL,
entity_type smallint NOT NULL
);


--
-- Name: jobs; Type: TABLE; Schema: public; Owner: -
--
Expand Down Expand Up @@ -192,6 +202,14 @@ ALTER TABLE ONLY public.global_link
ADD CONSTRAINT global_link_pkey PRIMARY KEY (guild_id);


--
-- Name: invalidation_config invalidation_config_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.invalidation_config
ADD CONSTRAINT invalidation_config_pkey PRIMARY KEY (entity_id, entity_type);


--
-- Name: my_images my_images_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
Expand Down

0 comments on commit 0bf964b

Please sign in to comment.