10 lines
177 B
Ruby
10 lines
177 B
Ruby
class AddPicUrlToArtist < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :artists, :pic_url, :string
|
|
end
|
|
|
|
def self.down
|
|
remove_column :artists, :pic_url
|
|
end
|
|
end
|