14 lines
196 B
Ruby
14 lines
196 B
Ruby
class CreateTracks < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :tracks do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :tracks
|
|
end
|
|
end
|