-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
604 additions
and
562 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
editoast/migrations/2024-02-05-140856_rolling_stock_power_restrictions_not_null/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,6 @@ | ||
-- This file should undo anything in `up.sql` | ||
|
||
ALTER TABLE rolling_stock | ||
ALTER power_restrictions TYPE jsonb, | ||
ALTER power_restrictions DROP DEFAULT, | ||
ALTER power_restrictions DROP NOT NULL; |
10 changes: 10 additions & 0 deletions
10
editoast/migrations/2024-02-05-140856_rolling_stock_power_restrictions_not_null/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,10 @@ | ||
-- Your SQL goes here | ||
|
||
UPDATE rolling_stock | ||
SET power_restrictions = '{}'::jsonb | ||
WHERE power_restrictions IS NULL; | ||
|
||
ALTER TABLE rolling_stock | ||
ALTER power_restrictions TYPE jsonb, | ||
ALTER power_restrictions SET DEFAULT '{}', | ||
ALTER power_restrictions SET NOT NULL; |
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
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
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
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
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
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
Oops, something went wrong.