2023-08-06 17:45:45 -07:00
|
|
|
class AddImageLayersHashToOutfit < ActiveRecord::Migration[3.2]
|
2012-07-16 13:47:28 -07:00
|
|
|
def self.up
|
|
|
|
add_column :outfits, :image_layers_hash, :string, :length => 8
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :outfits, :image_layers_hash
|
|
|
|
end
|
|
|
|
end
|