summaryrefslogtreecommitdiff
path: root/app/models/security_event.rb
blob: 68c00adad5971078ab1ab5886864accef769995c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# == 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