summaryrefslogtreecommitdiff
path: root/db/migrate/20200623090030_add_author_name_to_audit_event.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200623090030_add_author_name_to_audit_event.rb')
-rw-r--r--db/migrate/20200623090030_add_author_name_to_audit_event.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/db/migrate/20200623090030_add_author_name_to_audit_event.rb b/db/migrate/20200623090030_add_author_name_to_audit_event.rb
new file mode 100644
index 00000000000..8b45503189a
--- /dev/null
+++ b/db/migrate/20200623090030_add_author_name_to_audit_event.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+class AddAuthorNameToAuditEvent < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+ disable_ddl_transaction!
+
+ def up
+ unless column_exists?(:audit_events, :author_name)
+ with_lock_retries do
+ add_column :audit_events, :author_name, :text
+ end
+ end
+
+ add_text_limit :audit_events, :author_name, 255
+ end
+
+ def down
+ remove_column :audit_events, :author_name
+ end
+end