oldhaven/db/migrate/20110622000253_create_playlist_items.rb
2011-06-22 04:05:12 +04:00

15 lines
253 B
Ruby

class CreatePlaylistItems < ActiveRecord::Migration
def self.up
create_table :playlist_items do |t|
t.integer :playlist_id
t.integer :track_id
t.timestamps
end
end
def self.down
drop_table :playlist_items
end
end