1
0
Fork 0
oldhaven/db/migrate/20110614173514_add_pic_url_...

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