Add Purchase system
[cs356-p2-videostore.git] / db / schema.rb
index f0435a6..2e0f138 100644 (file)
@@ -2,7 +2,13 @@
 # migrations feature of ActiveRecord to incrementally modify your database, and
 # then regenerate this schema definition.
 
-ActiveRecord::Schema.define(:version => 12) do
+ActiveRecord::Schema.define(:version => 19) do
+
+  create_table "bitems", :force => true do |t|
+    t.column "customer_id",    :integer, :null => false
+    t.column "merchandise_id", :integer, :null => false
+    t.column "date",           :date,    :null => false
+  end
 
   create_table "coitems", :force => true do |t|
     t.column "customer_id", :integer
@@ -19,6 +25,29 @@ ActiveRecord::Schema.define(:version => 12) do
     t.column "debt",    :decimal,                :default => 0.0
   end
 
+  create_table "medias", :force => true do |t|
+    t.column "name", :string, :null => false
+  end
+
+  create_table "merchandise_purchases", :force => true do |t|
+  end
+
+  create_table "merchandises", :force => true do |t|
+    t.column "name",     :string,                                                 :null => false
+    t.column "quantity", :integer,                               :default => 0,   :null => false
+    t.column "price",    :decimal, :precision => 8, :scale => 2, :default => 0.0
+  end
+
+  create_table "purchases", :force => true do |t|
+    t.column "type",           :string
+    t.column "customer_id",    :integer
+    t.column "date",           :date
+    t.column "price",          :decimal, :default => 0.0
+    t.column "rentable_id",    :integer
+    t.column "merchandise_id", :integer
+    t.column "quantity",       :integer
+  end
+
   create_table "rentables", :force => true do |t|
     t.column "type",        :string
     t.column "title",       :string
@@ -30,6 +59,9 @@ ActiveRecord::Schema.define(:version => 12) do
     t.column "platform",    :integer
   end
 
+# Could not dump table "sqlite_sequence" because of following StandardError
+#   Unknown type '' for column 'name'
+
   create_table "videogenres", :force => true do |t|
     t.column "name", :string, :null => false
   end