Skip to content

Commit

Permalink
[chore] typo fixed
Browse files Browse the repository at this point in the history
- typo  fixed in `CONSTRAINT` name
  • Loading branch information
e11sy committed Nov 29, 2023
1 parent 07aa091 commit 5fe63a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/tenant/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5fe63a1

Please sign in to comment.