X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=db%2Fschema.rb;h=ae1459b9af08c804f2d46305631ded50904789d5;hb=74561aac0964ca7bd9283ad0a9b017e02431f845;hp=2e0f1381d3f3cd7b7893b07dcc64be1b46ee1f08;hpb=56db4e1da35c068e247eadbd32edd0a09eb61127;p=cs356-p2-videostore.git diff --git a/db/schema.rb b/db/schema.rb index 2e0f138..ae1459b 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 => 19) do +ActiveRecord::Schema.define(:version => 20) do create_table "bitems", :force => true do |t| t.column "customer_id", :integer, :null => false @@ -33,7 +33,7 @@ ActiveRecord::Schema.define(:version => 19) do end create_table "merchandises", :force => true do |t| - t.column "name", :string, :null => false + 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