summaryrefslogtreecommitdiff
path: root/app/models/commit_status.rb
diff options
context:
space:
mode:
authorJeff Stubler <brunsa2@gmail.com>2015-12-03 21:53:06 -0600
committerJeff Stubler <brunsa2@gmail.com>2015-12-03 21:53:06 -0600
commit932a7fd96f5977db6119205daa85495ea161dd68 (patch)
tree251f02d786fcec000bacfb3d19e063a636fc9635 /app/models/commit_status.rb
parent64ca9cf3e4a56a19f09160a91c5433d2ddb632cf (diff)
parente9d06903dab75129a0df63e686e18e85bfaeee8d (diff)
downloadgitlab-ce-932a7fd96f5977db6119205daa85495ea161dd68.tar.gz
Merge branch 'master' into diverging-branch-graphs
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r--app/models/commit_status.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb
index d346c5d35d2..e70f4d37184 100644
--- a/app/models/commit_status.rb
+++ b/app/models/commit_status.rb
@@ -1,3 +1,36 @@
+# == Schema Information
+#
+# 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
+#
+
class CommitStatus < ActiveRecord::Base
self.table_name = 'ci_builds'