Skip to content

Commit c8a08fe

Browse files
author
Alex Meadows
committed
process_tracker_python-142 Add audit fields to all tables
✨ All tables now have basic audit fields enabled Audit fields have been added to all tables. The fields are: created_date_time update_date_time created_by updated_by Closes #142
1 parent ff35347 commit c8a08fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbscripts/mysql_process_tracker.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ create table process_type_lkup
286286
created_date_time timestamp default CURRENT_TIMESTAMP not null,
287287
created_by int default 0 not null,
288288
update_date_time timestamp default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP not null,
289-
updated_by int default 0 not null,
289+
updated_by int default 0 not null
290290
);
291291

292292
create table process_tracker.source_lkup

0 commit comments

Comments
 (0)