forked from OpenNeo/impress
10 lines
235 B
Ruby
10 lines
235 B
Ruby
|
class AddImageEnqueuedToOutfits < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :outfits, :image_enqueued, :boolean, :null => false, :default => false
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :outfits, :image_enqueued
|
||
|
end
|
||
|
end
|