mirror of
https://github.com/fspc/bike-database.git
synced 2025-11-05 01:25:35 -05:00
7 lines
169 B
Ruby
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
|