Files
sx-fc/db/migrate/20180213052206_add_image_path_to_commissioners.rb

10 lines
187 B
Ruby

class AddImagePathToCommissioners < ActiveRecord::Migration[5.1]
def change
add_column :commissioners, :image_path, :string
end
def down
remove_column :image_path
end
end