diff options
author | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-05-04 19:42:10 +0200 |
---|---|---|
committer | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-05-06 08:27:46 +0200 |
commit | 47da013cf83b4a42fc9f4b049d8ba41dc3f325d2 (patch) | |
tree | f0e56c0ffedd1bff048a91c736d96b9b6365e2a6 /app/models/ci/commit.rb | |
parent | c583433862558550c8caedb03217880568dcdefc (diff) | |
download | gitlab-ce-47da013cf83b4a42fc9f4b049d8ba41dc3f325d2.tar.gz |
Annotate the models
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 |