1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20140918211228_add_new_parts_work_done_and_date_sold_to_bikes.rb

8 lines
216 B
Ruby

class AddNewPartsWorkDoneAndDateSoldToBikes < ActiveRecord::Migration
def change
add_column :bikes, :new_parts, :text
add_column :bikes, :work_done, :text
add_column :bikes, :date_sold, :date
end
end