summaryrefslogtreecommitdiff
path: root/app/models/commit_status.rb
diff options
context:
space:
mode:
authorJeroen Nijhof <jeroen@jeroennijhof.nl>2016-01-08 13:22:30 +0100
committerJeroen Nijhof <jeroen@jeroennijhof.nl>2016-01-08 13:22:30 +0100
commit2c37ae2f0a7612deb4bf93fb726c98cad60ca0aa (patch)
tree7672113b2b999e4fe3c8cfa041f187773e3e8534 /app/models/commit_status.rb
parent1695063d15498ce41d3e3f62b7ec88effb9e1eca (diff)
parent08213ed4f5d35b582f0345d6a825737ced98fd05 (diff)
downloadgitlab-ce-2c37ae2f0a7612deb4bf93fb726c98cad60ca0aa.tar.gz
Merge gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r--app/models/commit_status.rb55
1 files changed, 30 insertions, 25 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb
index 21c5c87bc3d..ff479493474 100644
--- a/app/models/commit_status.rb
+++ b/app/models/commit_status.rb
@@ -1,30 +1,35 @@
# == Schema Information
#
-# project_id integer
-# status string
-# finished_at datetime
-# trace text
-# created_at datetime
-# updated_at datetime
-# started_at datetime
-# runner_id integer
-# coverage float
-# commit_id integer
-# commands text
-# job_id integer
-# name string
-# deploy boolean default: false
-# options text
-# allow_failure boolean default: false, null: false
-# stage string
-# trigger_request_id integer
-# stage_idx integer
-# tag boolean
-# ref string
-# user_id integer
-# type string
-# target_url string
-# description string
+# Table name: ci_builds
+#
+# id :integer not null, primary key
+# project_id :integer
+# status :string(255)
+# finished_at :datetime
+# trace :text
+# created_at :datetime
+# updated_at :datetime
+# started_at :datetime
+# runner_id :integer
+# coverage :float
+# commit_id :integer
+# commands :text
+# job_id :integer
+# name :string(255)
+# deploy :boolean default(FALSE)
+# options :text
+# allow_failure :boolean default(FALSE), not null
+# stage :string(255)
+# trigger_request_id :integer
+# stage_idx :integer
+# tag :boolean
+# ref :string(255)
+# user_id :integer
+# type :string(255)
+# target_url :string(255)
+# description :string(255)
+# artifacts_file :text
+# gl_project_id :integer
#
class CommitStatus < ActiveRecord::Base