-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
b598126
commit b4832cd
Showing
5 changed files
with
13 additions
and
18 deletions.
There are no files selected for viewing
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
4 changes: 4 additions & 0 deletions
4
backend/src/main/resources/db/migration/internal/V0.291__Update_risk_factors_table.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,4 @@ | ||
ALTER TABLE public.risk_factors | ||
ALTER COLUMN gear_onboard SET NOT NULL; | ||
ALTER TABLE public.risk_factors | ||
ALTER COLUMN species_onboard SET NOT NULL; |
2 changes: 2 additions & 0 deletions
2
backend/src/main/resources/db/migration/internal/V0.292__Update_vessels_table.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 public.vessels | ||
ALTER COLUMN declared_fishing_gears SET NOT NULL; |
1 change: 1 addition & 0 deletions
1
backend/src/main/resources/db/migration/internal/V0.293__Update_logbook_reports_table.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 @@ | ||
ALTER TYPE public.logbook_message_transmission_format ADD VALUE 'MANUAL' AFTER 'FLUX'; |
6 changes: 6 additions & 0 deletions
6
backend/src/main/resources/db/migration/internal/V0.294__Update_logbook_reports_table.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 @@ | ||
ALTER TABLE public.logbook_reports | ||
ALTER COLUMN operation_type SET NOT NULL; | ||
ALTER TABLE public.logbook_reports | ||
ALTER COLUMN integration_datetime_utc SET NOT NULL; | ||
ALTER TABLE public.logbook_reports | ||
ALTER COLUMN transmission_format SET NOT NULL; |