gitlab-org--gitlab-foss/app/models/project_services/gitlab_ci_service.rb

24 lines
816 B
Ruby
Raw Normal View History

2012-11-19 19:34:05 +00:00
# == Schema Information
#
# Table name: services
#
2015-03-04 22:14:00 +00:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
# active :boolean default(FALSE), not null
# properties :text
# template :boolean default(FALSE)
# push_events :boolean default(TRUE)
# issues_events :boolean default(TRUE)
# merge_requests_events :boolean default(TRUE)
# tag_push_events :boolean default(TRUE)
2015-05-03 16:05:38 +00:00
# note_events :boolean default(TRUE), not null
2012-11-19 19:34:05 +00:00
#
class GitlabCiService < CiService
2015-12-04 11:55:23 +00:00
# this is no longer used
2012-11-19 19:34:05 +00:00
end