mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
8 lines
216 B
Ruby
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
|