1
0
Fork 0
beathaven/db/migrate/20120826172032_create_track...

15 lines
277 B
Ruby

class CreateTracks < ActiveRecord::Migration
def change
create_table :tracks do |t|
t.integer :album_id
t.string :rovi_id
t.integer :disc_id
t.integer :position
t.string :title
t.integer :duration
t.timestamps
end
end
end