9 lines
173 B
Ruby
9 lines
173 B
Ruby
class AddImageToOutfits < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :outfits, :image, :string
|
|
end
|
|
|
|
def self.down
|
|
remove_column :outfits, :image
|
|
end
|
|
end
|