diff options
author | Valery Sizov <valery@gitlab.com> | 2015-04-17 14:15:24 +0000 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2015-04-17 14:15:24 +0000 |
commit | f73c162835c11a357baf59430fddceb02e22259b (patch) | |
tree | 0604a37a22667a57f286f2bb773b4f4e9435e32e /spec/models | |
parent | cca6ded9fd1874863a265ca4d96c243e637ec3de (diff) | |
parent | ba97b86868c14c7e4e18bada4247f57bd544c837 (diff) | |
download | gitlab-ci-f73c162835c11a357baf59430fddceb02e22259b.tar.gz |
Merge branch 'cleanup' into 'master'
Cleanup the build model
https://dev.gitlab.org/gitlab/gitlab-ci/issues/202
See merge request !67
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/build_spec.rb | 7 | ||||
-rw-r--r-- | spec/models/job_spec.rb | 1 |
2 files changed, 2 insertions, 6 deletions
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index de0e0b9..073a215 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -4,20 +4,15 @@ # # id :integer not null, primary key # project_id :integer -# ref :string(255) # status :string(255) # finished_at :datetime # trace :text # created_at :datetime # updated_at :datetime -# sha :string(255) # started_at :datetime -# tmp_file :string(255) -# before_sha :string(255) -# push_data :text # runner_id :integer -# coverage :float # commit_id :integer +# coverage :float # commands :text # job_id :integer # diff --git a/spec/models/job_spec.rb b/spec/models/job_spec.rb index 96221d7..d993139 100644 --- a/spec/models/job_spec.rb +++ b/spec/models/job_spec.rb @@ -13,6 +13,7 @@ # build_tags :boolean default(FALSE), not null # job_type :string(255) default("parallel") # refs :string(255) +# deleted_at :datetime # require 'spec_helper' |