-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add migrations to add/remove ss4a project tags
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
moped-database/migrations/1734112355149_add_ss4a_proj_tags/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,5 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- INSERT INTO moped_tags (name, type, slug, is_deleted) VALUES | ||
-- ('SS4A Vision Zero 2022', 'Work Plan', 'ss4a_vision_zero_2022', FALSE), | ||
-- ('SS4A Vision Zero 2024', 'Work Plan', 'ss4a_vision_zero_2024', FALSE); |
3 changes: 3 additions & 0 deletions
3
moped-database/migrations/1734112355149_add_ss4a_proj_tags/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,3 @@ | ||
INSERT INTO moped_tags (name, type, slug, is_deleted) VALUES | ||
('SS4A Vision Zero 2022', 'Work Plan', 'ss4a_vision_zero_2022', FALSE), | ||
('SS4A Vision Zero 2024', 'Work Plan', 'ss4a_vision_zero_2024', FALSE); |