X-Git-Url: https://www.irasnyder.com/gitweb/?a=blobdiff_plain;f=db%2Fschema.rb;h=8132da33fdd2fd90d2b9eb01f3e75280d4a4dead;hb=9b264f25255cc0e7cca3169d99905f590c8be578;hp=885c6eea76d04682b2dc078c5566efad940b6a05;hpb=28e07f23e1c75f7442dd87caf34f0f47109bf966;p=cs356-p2-videostore.git diff --git a/db/schema.rb b/db/schema.rb index 885c6ee..8132da3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,7 +2,13 @@ # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. -ActiveRecord::Schema.define(:version => 8) do +ActiveRecord::Schema.define(:version => 21) 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 @@ -13,29 +19,57 @@ ActiveRecord::Schema.define(:version => 8) do create_table "customers", :force => true do |t| t.column "name", :string - t.column "address", :string + t.column "address", :text, :limit => 255 t.column "email", :string t.column "phone", :string - t.column "debt", :decimal, :precision => 8, :scale => 2, :default => 0.0 + t.column "debt", :decimal, :default => 0.0 end - create_table "games", :force => true do |t| - t.column "title", :string - t.column "platform", :integer - t.column "genre", :integer - t.column "rentable_id", :integer + create_table "medias", :force => true do |t| + t.column "name", :string, :null => false end - create_table "rentables", :force => true do |t| - t.column "rtype", :string + create_table "merchandise_purchases", :force => true do |t| end - create_table "videos", :force => true do |t| - t.column "rentable_id", :integer + create_table "merchandises", :force => true do |t| + t.column "title", :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 "rentable_policies", :force => true do |t| + t.column "name", :string, :null => false + t.column "value", :integer + t.column "description", :string, :null => false + end + + create_table "rentables", :force => true do |t| + t.column "type", :string + t.column "title", :string t.column "newrelease", :boolean, :default => false + t.column "video_genre", :integer t.column "director", :string - t.column "genre", :integer - t.column "title", :string + t.column "media", :integer + t.column "game_genre", :integer + 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 end