X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=db%2Fschema.rb;h=8132da33fdd2fd90d2b9eb01f3e75280d4a4dead;hb=9218748c58d552432e7bd4a34383589eb17ac331;hp=ae1459b9af08c804f2d46305631ded50904789d5;hpb=74561aac0964ca7bd9283ad0a9b017e02431f845;p=cs356-p2-videostore.git diff --git a/db/schema.rb b/db/schema.rb index ae1459b..8132da3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,7 +2,7 @@ # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. -ActiveRecord::Schema.define(:version => 20) do +ActiveRecord::Schema.define(:version => 21) do create_table "bitems", :force => true do |t| t.column "customer_id", :integer, :null => false @@ -48,6 +48,12 @@ ActiveRecord::Schema.define(:version => 20) do 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