forked from OpenNeo/impress
10 lines
209 B
Ruby
10 lines
209 B
Ruby
|
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
|