1
0
Fork 0
oldhaven/db/migrate/20110630052149_add_has_pic_...

10 lines
175 B
Ruby

class AddHasPicToAlbum < ActiveRecord::Migration
def self.up
add_column :albums, :has_pic, :integer
end
def self.down
remove_column :albums, :has_pic
end
end