mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
17 lines
389 B
Ruby
17 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
|