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

10 lines
214 B
Ruby
Raw Normal View History

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