Files
9minutes/db/migrate/20110605221058_create_tracks.rb
2011-06-06 02:25:25 +02:00

15 lines
224 B
Ruby

class CreateTracks < ActiveRecord::Migration
def self.up
create_table :tracks do |t|
t.string :title
t.references :artist
t.timestamps
end
end
def self.down
drop_table :tracks
end
end