diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-05-06 11:15:04 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-05-06 11:15:04 +0000 |
commit | 45ef8d5edaf3904f44d850d97863bbc53e8c4a1f (patch) | |
tree | 5b6b6116dd95a2224f9af07eb95d86cf92365718 /app/models/ci/commit.rb | |
parent | aa18cc205c90ea027cd3f2788371f36fd0697fda (diff) | |
parent | 8278b763d96ef10c6494409b18b7eb541463af29 (diff) | |
download | gitlab-ce-45ef8d5edaf3904f44d850d97863bbc53e8c4a1f.tar.gz |
Merge branch 'annotate-models' into 'master'
Update annotations on models
See merge request !3962
Diffstat (limited to 'app/models/ci/commit.rb')
-rw-r--r-- | app/models/ci/commit.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/models/ci/commit.rb b/app/models/ci/commit.rb index f2667e5476b..4ac4e0fb8b2 100644 --- a/app/models/ci/commit.rb +++ b/app/models/ci/commit.rb @@ -4,9 +4,9 @@ # # id :integer not null, primary key # project_id :integer -# ref :string(255) -# sha :string(255) -# before_sha :string(255) +# ref :string +# sha :string +# before_sha :string # push_data :text # created_at :datetime # updated_at :datetime @@ -14,6 +14,10 @@ # yaml_errors :text # committed_at :datetime # gl_project_id :integer +# status :string +# started_at :datetime +# finished_at :datetime +# duration :integer # module Ci |