photomix/db/migrate/20090520230047_add_path_to_...

12 lines
242 B
Ruby

class AddPathToAlbumAndPhoto < ActiveRecord::Migration
def self.up
add_column :albums, :path, :text
add_column :photos, :path, :text
end
def self.down
remove_column :albums, :path
remove_column :photos, :path
end
end