-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add protocols column to requests_dnf (#8)
--------- Co-authored-by: guillaumemichel <[email protected]>
- Loading branch information
1 parent
a74c824
commit f64f4f1
Showing
4 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
db/migrations/000018_add_protocols_to_requests_dnf_table.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE requests_denormalized | ||
DROP COLUMN IF EXISTS protocols; |
5 changes: 5 additions & 0 deletions
5
db/migrations/000018_add_protocols_to_requests_dnf_table.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
BEGIN; | ||
|
||
ALTER TABLE requests_denormalized ADD COLUMN protocols TEXT[]; | ||
|
||
COMMIT; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters