1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20110210222230_guest_outfits.rb

10 lines
209 B
Ruby
Raw Normal View History

2011-02-10 14:50:47 -08:00
class GuestOutfits < ActiveRecord::Migration
def self.up
change_column :outfits, :name, :string, :null => true
end
def self.down
change_column :outfits, :name, :string, :null => false
end
end