diff --git a/app/models/container.rb b/app/models/container.rb deleted file mode 100644 index 1edd52dc8..000000000 --- a/app/models/container.rb +++ /dev/null @@ -1,4 +0,0 @@ -class Container < ActiveRecord::Base - belongs_to :platform - has_many :build_lists -end diff --git a/db/migrate/20170129102535_create_containers.rb b/db/migrate/20170129102535_create_containers.rb deleted file mode 100644 index 69556f7df..000000000 --- a/db/migrate/20170129102535_create_containers.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateContainers < ActiveRecord::Migration - def change - create_table :containers do |t| - t.string :name - t.references :platform, index: true, foreign_key: true - - t.timestamps null: false - end - end -end diff --git a/db/migrate/20170129103216_add_container_to_build_lists.rb b/db/migrate/20170129103216_add_container_to_build_lists.rb deleted file mode 100644 index e9d29b4b1..000000000 --- a/db/migrate/20170129103216_add_container_to_build_lists.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddContainerToBuildLists < ActiveRecord::Migration - def change - add_reference :build_lists, :container, index: true, foreign_key: true - end -end diff --git a/spec/models/container_spec.rb b/spec/models/container_spec.rb deleted file mode 100644 index c74f254d2..000000000 --- a/spec/models/container_spec.rb +++ /dev/null @@ -1,5 +0,0 @@ -require 'rails_helper' - -RSpec.describe Container, type: :model do - pending "add some examples to (or delete) #{__FILE__}" -end