From 5fe63a1db8c425c346f1122177c33c880520eb2c Mon Sep 17 00:00:00 2001 From: e11sy Date: Wed, 29 Nov 2023 09:36:28 +0300 Subject: [PATCH] [chore] typo fixed - typo fixed in `CONSTRAINT` name --- migrations/tenant/0011-teams@add-teams-table.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migrations/tenant/0011-teams@add-teams-table.sql b/migrations/tenant/0011-teams@add-teams-table.sql index daa0267e..7f37fab3 100644 --- a/migrations/tenant/0011-teams@add-teams-table.sql +++ b/migrations/tenant/0011-teams@add-teams-table.sql @@ -10,11 +10,11 @@ CREATE TABLE IF NOT EXISTS public.teams ( ); -- --- Name: teams relation_id; Type: PK CONSTRAINT; Schema: public; Owner: codex +-- Name: teams relation_id_pkey; Type: PK CONSTRAINT; Schema: public; Owner: codex -- ALTER TABLE public.note_relations DROP CONSTRAINT IF EXISTS relation_id_pkey; ALTER TABLE public.note_relations - ADD CONSTRAINT relation_id PRIMARY KEY (id); + ADD CONSTRAINT relation_id_pkey PRIMARY KEY (id); -- -- Name: teams user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: codex