2012-09-27 07:36:31 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: web_hooks
|
|
|
|
#
|
2012-11-19 19:24:05 +01:00
|
|
|
# id :integer not null, primary key
|
2012-09-27 07:36:31 +02:00
|
|
|
# url :string(255)
|
|
|
|
# project_id :integer
|
2012-11-19 19:24:05 +01:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# type :string(255) default("ProjectHook")
|
2012-11-20 13:19:55 +01:00
|
|
|
# service_id :integer
|
2012-09-27 07:36:31 +02:00
|
|
|
#
|
2012-10-09 10:14:17 +02:00
|
|
|
|
2012-11-19 19:24:05 +01:00
|
|
|
class ProjectHook < WebHook
|
|
|
|
belongs_to :project
|
|
|
|
end
|