migration for column type decimal(10,2)

That should use set_column_type

ROM::SQL.migration do
  change do
    alter_table :orders do
      set_column_type :price, "decimal(10,2)"
    end
  end
end