photomix/db/migrate/20100412220801_add_file_to_...

10 lines
178 B
Ruby

class AddFileToPhoto < ActiveRecord::Migration
def self.up
add_column :photos, :attachment, :string
end
def self.down
remove_column :photos, :attachment
end
end