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

7 lines
169 B
Ruby

class UpdateBikeFieldNames < ActiveRecord::Migration
def change
rename_column :bikes, :notes, :work_done
rename_column :bikes, :tag_info, :new_parts
end
end