Welcome to mirror list, hosted at ThFree Co, Russian Federation.

security_event.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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