Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-25 13:25:02 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-25 13:25:02 +0400
commit92deb451da16bdc1b9520fc06f593b7e373d81af (patch)
tree9ad16b93f636395b6e97936912d3009c89ed8b45 /app/models/project_services/ci_service.rb
parent1a9b2a47a139f2e683873c5d46cea15161e35783 (diff)
Annotate models
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/models/project_services/ci_service.rb')
-rw-r--r--app/models/project_services/ci_service.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/models/project_services/ci_service.rb b/app/models/project_services/ci_service.rb
index fd34a2a35ea..1a107f92c93 100644
--- a/app/models/project_services/ci_service.rb
+++ b/app/models/project_services/ci_service.rb
@@ -1,3 +1,22 @@
+# == Schema Information
+#
+# Table name: services
+#
+# id :integer not null, primary key
+# type :string(255)
+# title :string(255)
+# token :string(255)
+# project_id :integer not null
+# created_at :datetime
+# updated_at :datetime
+# active :boolean default(FALSE), not null
+# project_url :string(255)
+# subdomain :string(255)
+# room :string(255)
+# recipients :text
+# api_key :string(255)
+#
+
# Base class for CI services
# List methods you need to implement to get your CI service
# working with GitLab Merge Requests