1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20120725232903_add_image_enqueued_to_outfits.rb

10 lines
240 B
Ruby
Raw Normal View History

class AddImageEnqueuedToOutfits < ActiveRecord::Migration[3.2]
def self.up
add_column :outfits, :image_enqueued, :boolean, :null => false, :default => false
end
def self.down
remove_column :outfits, :image_enqueued
end
end