2015-08-02 12:52:54 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: audit_events
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# author_id :integer not null
|
|
|
|
# type :string(255) not null
|
|
|
|
# entity_id :integer not null
|
|
|
|
# entity_type :string(255) not null
|
|
|
|
# details :text
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
|
2015-07-03 07:54:50 -04:00
|
|
|
class SecurityEvent < AuditEvent
|
|
|
|
end
|