Album has_pic fix, production gems fix

This commit is contained in:
magnolia-fan
2011-06-30 09:29:24 +04:00
parent 13a233ac72
commit 31a1cb88e2
5 changed files with 19 additions and 7 deletions
@@ -0,0 +1,9 @@
class AddHasPicToAlbum < ActiveRecord::Migration
def self.up
add_column :albums, :has_pic, :integer
end
def self.down
remove_column :albums, :has_pic
end
end