generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CE-14-Add Offset to incident datetime (#165)
Co-authored-by: afwilcox <[email protected]>
- Loading branch information
Showing
28 changed files
with
15,557 additions
and
15,453 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
4,513 changes: 1 addition & 4,512 deletions
4,513
backend/db/migrations/R__WebEOC-July-ERS-complaints.sql
Large diffs are not rendered by default.
Oops, something went wrong.
10,344 changes: 1 addition & 10,343 deletions
10,344
backend/db/migrations/R__WebEOC-July-HWCR-complaints.sql
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
alter table public.complaint rename column incident_datetime to incident_utc_datetime; |
14,864 changes: 14,864 additions & 0 deletions
14,864
backend/db/migrations/V0.9.4__CE-14-DML-NOT-FOR-PROD.sql
Large diffs are not rendered by default.
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
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 @@ | ||
export interface AllegationSearchOptions { | ||
community: string; | ||
zone: string; | ||
region: string; | ||
officerAssigned: string; | ||
violationCode: string; | ||
incidentReportedStart: string; | ||
incidentReportedEnd: string; | ||
status: string; | ||
} |
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,11 @@ | ||
export interface HWCRSearchOptions { | ||
community: string; | ||
zone: string; | ||
region: string; | ||
officerAssigned: string; | ||
natureOfComplaint: string; | ||
speciesCode: string; | ||
incidentReportedStart: Date; | ||
incidentReportedEnd: Date; | ||
status: string; | ||
} |
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.