BigW Consortium Gitlab

project_hook.rb 373 Bytes
Newer Older
Nihad Abbasov committed
1 2 3 4
# == Schema Information
#
# Table name: web_hooks
#
5
#  id         :integer          not null, primary key
Nihad Abbasov committed
6 7
#  url        :string(255)
#  project_id :integer
8 9 10
#  created_at :datetime         not null
#  updated_at :datetime         not null
#  type       :string(255)      default("ProjectHook")
Dmitriy Zaporozhets committed
11
#  service_id :integer
Nihad Abbasov committed
12
#
Dmitriy Zaporozhets committed
13

14 15 16
class ProjectHook < WebHook
  belongs_to :project
end