diff options
Diffstat (limited to 'spec/models/build_spec.rb')
-rw-r--r-- | spec/models/build_spec.rb | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index c0969f7..a1891c8 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -1,3 +1,23 @@ +# == Schema Information +# +# Table name: builds +# +# id :integer not null, primary key +# project_id :integer +# ref :string(255) +# status :string(255) +# finished_at :datetime +# trace :text(2147483647) +# created_at :datetime not null +# updated_at :datetime not null +# sha :string(255) +# started_at :datetime +# tmp_file :string(255) +# before_sha :string(255) +# push_data :text +# runner_id :integer +# + require 'spec_helper' describe Build do @@ -32,22 +52,3 @@ describe Build do end - -# == Schema Information -# -# Table name: builds -# -# id :integer(4) not null, primary key -# project_id :integer(4) -# ref :string(255) -# status :string(255) -# finished_at :datetime -# trace :text(2147483647 -# created_at :datetime not null -# updated_at :datetime not null -# sha :string(255) -# started_at :datetime -# tmp_file :string(255) -# before_sha :string(255) -# - |