1
0
Fork 0
oldhaven/db/migrate/20110920152641_create_local...

13 lines
253 B
Ruby
Raw Normal View History

2011-09-20 20:30:42 +00:00
class CreateLocalBrainzTracks < ActiveRecord::Migration
def change
create_table :local_brainz_tracks do |t|
t.integer :position
t.string :recording_id
t.string :title
t.integer :length
t.timestamps
end
end
end