1
0
Fork 0
oldhaven/db/migrate/20110622000213_create_playl...

15 lines
230 B
Ruby
Raw Normal View History

2011-06-22 00:05:12 +00:00
class CreatePlaylists < ActiveRecord::Migration
def self.up
create_table :playlists do |t|
t.integer :user_id
t.string :name
t.timestamps
end
end
def self.down
drop_table :playlists
end
end