Skip to content

Commit

Permalink
format(*): formatted all files with pretter
Browse files Browse the repository at this point in the history
  • Loading branch information
GervinFung committed Jul 21, 2024
1 parent 53dad77 commit 6d84671
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ CREATE TABLE template (
name TEXT NOT NULL UNIQUE,
content TEXT NOT NULL,
created_at TIMESTAMPTZ DEFAULT NOW() NOT NULL
);
);
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ALTER TABLE template DROP CONSTRAINT template_name_key;
ALTER TABLE template
DROP CONSTRAINT template_name_key;

ALTER TABLE template ADD UNIQUE (batch_id, name);
ALTER TABLE template
ADD UNIQUE (batch_id, name);

0 comments on commit 6d84671

Please sign in to comment.