1
0
Fork 0
oldhaven/db/migrate/20110621233641_create_favor...

17 lines
288 B
Ruby
Raw Normal View History

2011-06-22 00:05:12 +00:00
class CreateFavorites < ActiveRecord::Migration
def self.up
create_table :favorites do |t|
t.integer :user_id
t.integer :artist_id
t.integer :album_id
t.integer :track_id
t.timestamps
end
end
def self.down
drop_table :favorites
end
end