gitlab-org--gitlab-foss/app/models/service_hook.rb

17 lines
339 B
Ruby
Raw Normal View History

2012-11-19 18:14:05 +00:00
# == Schema Information
#
# Table name: web_hooks
#
# id :integer not null, primary key
# url :string(255)
# project_id :integer
2013-06-19 12:40:33 +00:00
# created_at :datetime
# updated_at :datetime
2012-11-19 18:14:05 +00:00
# type :string(255) default("ProjectHook")
2012-11-20 12:19:55 +00:00
# service_id :integer
2012-11-19 18:14:05 +00:00
#
class ServiceHook < WebHook
belongs_to :service
end