We set few values on a certain row during migration, how do we handle this on a rollback. I would like to set empty null values on down
def up
f = Foo.where(:name => 'some').first
f.update_attributes(:val1 => 'val1', :val2 => 'val2');
end
def down
# What should we do here to revert the migration
end