Import script works fine
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class AddPicUrlToArtist < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :artists, :pic_url, :string
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :artists, :pic_url
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,9 @@
|
||||
class AddLengthToTrack < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :tracks, :length, :integer
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :tracks, :length
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user