10 lines
179 B
Ruby
10 lines
179 B
Ruby
class AddImagePathToEmployees < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :employees, :image_path, :string
|
|
end
|
|
|
|
def down
|
|
remove_column :image_path
|
|
end
|
|
end
|