Skip to content

Commit

Permalink
[Amir] migrations to add new column to audit table. user_email is goi…
Browse files Browse the repository at this point in the history
…ng to track the user who invoked the proctor
  • Loading branch information
anagri committed Sep 27, 2018
1 parent cdb0a5f commit afda932
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions proctord/migrations/5_AddColumnUserEmail.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table jobs_execution_audit_log drop column if exists user_email;
1 change: 1 addition & 0 deletions proctord/migrations/5_AddColumnUserEmail.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table jobs_execution_audit_log add column user_email text default NULL;

0 comments on commit afda932

Please sign in to comment.