2023-08-06 17:45:45 -07:00
|
|
|
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
|