Revert "Add the has_many_polymorphs purchaseable model"
[cs356-p2-videostore.git] / db / schema.rb
index b349a76..dcfe7d9 100644 (file)
@@ -2,7 +2,7 @@
 # migrations feature of ActiveRecord to incrementally modify your database, and
 # then regenerate this schema definition.
 
-ActiveRecord::Schema.define(:version => 16) do
+ActiveRecord::Schema.define(:version => 15) do
 
   create_table "bitems", :force => true do |t|
     t.column "customer_id",    :integer, :null => false
@@ -35,12 +35,6 @@ ActiveRecord::Schema.define(:version => 16) do
     t.column "price",    :decimal, :precision => 8, :scale => 2, :default => 0.0
   end
 
-  create_table "purchases", :force => true do |t|
-    t.column "customer_id",       :integer
-    t.column "purchaseable_id",   :integer
-    t.column "purchaseable_type", :string
-  end
-
   create_table "rentables", :force => true do |t|
     t.column "type",        :string
     t.column "title",       :string