Files
sx-fc/db/migrate/20180213050631_add_image_path_to_customers.rb

10 lines
179 B
Ruby

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