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

10 lines
175 B
Ruby
Raw Normal View History

2011-06-30 05:29:24 +00:00
class AddHasPicToAlbum < ActiveRecord::Migration
def self.up
add_column :albums, :has_pic, :integer
end
def self.down
remove_column :albums, :has_pic
end
end