mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
7 lines
175 B
Ruby
7 lines
175 B
Ruby
class AddDragonflyImageToPhotos < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :photos, :image_uid, :string
|
|
add_column :photos, :image_name, :string
|
|
end
|
|
end
|