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

10 lines
177 B
Ruby
Raw Normal View History

2011-06-14 18:06:46 +00:00
class AddPicUrlToArtist < ActiveRecord::Migration
def self.up
add_column :artists, :pic_url, :string
end
def self.down
remove_column :artists, :pic_url
end
end