Commit 5872e6cb authored by Andreas Brandl's avatar Andreas Brandl

Merge branch '217941-ignore-updated-at-in-audit-events' into 'master'

Ignore update_at column in audit_events table

See merge request gitlab-org/gitlab!34156
parents 31b68539 76ff0190
......@@ -2,6 +2,9 @@
class AuditEvent < ApplicationRecord
include CreatedAtFilterable
include IgnorableColumns
ignore_column :updated_at, remove_with: '13.3', remove_after: '2020-08-22'
serialize :details, Hash # rubocop:disable Cop/ActiveRecordSerialize
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment