10 lines
187 B
Ruby
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
|