2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddAuditEvent < ActiveRecord::Migration[4.2]
|
2016-11-30 10:15:02 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2015-07-03 07:54:50 -04:00
|
|
|
def change
|
|
|
|
create_table :audit_events do |t|
|
|
|
|
t.integer :author_id, null: false
|
|
|
|
t.string :type, null: false
|
|
|
|
|
|
|
|
# "Namespace" where the change occurs
|
|
|
|
# eg. On a project, group or user
|
|
|
|
t.integer :entity_id, null: false
|
|
|
|
t.string :entity_type, null: false
|
|
|
|
|
|
|
|
# Details for the event
|
|
|
|
t.text :details
|
|
|
|
|
2016-11-28 10:45:08 -05:00
|
|
|
t.timestamps null: true
|
2015-07-03 07:54:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :audit_events, :author_id
|
|
|
|
add_index :audit_events, :type
|
|
|
|
add_index :audit_events, [:entity_id, :entity_type]
|
|
|
|
end
|
|
|
|
end
|