oldhaven/db/migrate/20110630052149_add_has_pic_to_album.rb

10 lines
175 B
Ruby
Raw Normal View History

2011-06-30 09:29:24 +04: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