generated from hmcts/spring-boot-template
-
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.
PO-613 OFFENCES table. Add column plus reference data (#501)
- Loading branch information
1 parent
bbd504b
commit 0565489
Showing
3 changed files
with
39,761 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/main/resources/db/migration/V20240819_230__add_date_offences.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,17 @@ | ||
/** | ||
* | ||
* OPAL Program | ||
* | ||
* MODULE : add_date_used_from_offences.sql | ||
* | ||
* DESCRIPTION : Add the date_used_from column of the OFFENCE table | ||
* | ||
* VERSION HISTORY: | ||
* | ||
* Date Author Version Nature of Change | ||
* ---------- -------- -------- ---------------------------------------------------------------- | ||
* 19/08/2024 I Readman 1.0 PO-613 Add column date_used_from to the OFFENCES table | ||
* | ||
**/ | ||
ALTER TABLE OFFENCES ADD COLUMN date_used_from timestamp; | ||
COMMENT ON COLUMN offences.date_used_from IS 'The date the offence was in use from.'; |
Oops, something went wrong.