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