summaryrefslogtreecommitdiff
path: root/app/models/commit_status.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2016-05-06 11:15:04 +0000
committerDouwe Maan <douwe@gitlab.com>2016-05-06 11:15:04 +0000
commit45ef8d5edaf3904f44d850d97863bbc53e8c4a1f (patch)
tree5b6b6116dd95a2224f9af07eb95d86cf92365718 /app/models/commit_status.rb
parentaa18cc205c90ea027cd3f2788371f36fd0697fda (diff)
parent8278b763d96ef10c6494409b18b7eb541463af29 (diff)
downloadgitlab-ce-45ef8d5edaf3904f44d850d97863bbc53e8c4a1f.tar.gz
Merge branch 'annotate-models' into 'master'
Update annotations on models See merge request !3962
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r--app/models/commit_status.rb17
1 files changed, 10 insertions, 7 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb
index aa56314aa16..1260c448de3 100644
--- a/app/models/commit_status.rb
+++ b/app/models/commit_status.rb
@@ -4,7 +4,7 @@
#
# id :integer not null, primary key
# project_id :integer
-# status :string(255)
+# status :string
# finished_at :datetime
# trace :text
# created_at :datetime
@@ -15,21 +15,24 @@
# commit_id :integer
# commands :text
# job_id :integer
-# name :string(255)
+# name :string
# deploy :boolean default(FALSE)
# options :text
# allow_failure :boolean default(FALSE), not null
-# stage :string(255)
+# stage :string
# trigger_request_id :integer
# stage_idx :integer
# tag :boolean
-# ref :string(255)
+# ref :string
# user_id :integer
-# type :string(255)
-# target_url :string(255)
-# description :string(255)
+# type :string
+# target_url :string
+# description :string
# artifacts_file :text
# gl_project_id :integer
+# artifacts_metadata :text
+# erased_by_id :integer
+# erased_at :datetime
#
class CommitStatus < ActiveRecord::Base