13 lines
253 B
Ruby
13 lines
253 B
Ruby
|
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
|