10 lines
175 B
Ruby
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
|