1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20120716193946_add_image_layers_hash_to_outfit.rb
2012-07-16 16:47:28 -04:00

9 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