impress/db/migrate/20101109021049_create_outfits.rb

15 lines
238 B
Ruby
Raw Normal View History

class CreateOutfits < ActiveRecord::Migration[3.2]
def self.up
create_table :outfits do |t|
t.integer :pet_state_id
t.integer :user_id
t.timestamps
end
end
def self.down
drop_table :outfits
end
end