16 lines
389 B
Ruby
16 lines
389 B
Ruby
# == 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
|
|
#
|
|
|
|
class SecurityEvent < AuditEvent
|
|
end
|