forked from OpenNeo/impress
10 lines
220 B
Ruby
10 lines
220 B
Ruby
|
class AddImageLayersHashToOutfit < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :outfits, :image_layers_hash, :string, :length => 8
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :outfits, :image_layers_hash
|
||
|
end
|
||
|
end
|