Skip to content

Commit

Permalink
PO-613 OFFENCES table. Add column plus reference data (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-readman authored Aug 19, 2024
1 parent bbd504b commit 0565489
Show file tree
Hide file tree
Showing 3 changed files with 39,761 additions and 0 deletions.
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.';
Loading

0 comments on commit 0565489

Please sign in to comment.