diff --git a/db/migrate/20140922032830_change225_bid_data.rb b/db/migrate/20140922032830_change225_bid_data.rb new file mode 100644 index 000000000..f41ec73c0 --- /dev/null +++ b/db/migrate/20140922032830_change225_bid_data.rb @@ -0,0 +1,13 @@ +class Change225BidData < ActiveRecord::Migration + def up + bid = Bid.find 225 + bid.proportion = 60 + bid.save + end + + def down + bid = Bid.find 225 + bid.proportion = 60 + bid.save + end +end diff --git a/db/schema.rb b/db/schema.rb index ebf24f547..817104aa9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20140916005319) do +ActiveRecord::Schema.define(:version => 20140922032830) do create_table "activities", :force => true do |t| t.integer "act_id", :null => false