===============================
* ``transfer_to()`` on ``Account`` is now deprecated and raises a warning
in favor of ``accounting_transfer_to()``. It performed transfers differently
than expected when comparing it to Dr/Cr double entry accounting, see function notes.
This function will raise an error in Hordak 2.0.
* Now using Django's locale to ``Balance.__str__``'s ``format_money`` allowing better formatting and specs.
* Changed ``Account.currencies`` from ``ArrayField => JSONField`` to allow database agnostic work.
* **Breaking Change**
* ``Account.currencies`` input must be valid JSON now.
* This is mostly important in 2 areas
* ``Forms``, but also if you performed a ``", ".join(currencies_str_arr)``.
* ``Fixtures``
* Previous: ``EUR, USD`` => ``["EUR", "USD"]``
* Form complains if it is not valid JSON and returns an explanation.
* MySQL support
* Migrations and triggers modified to target MySQL whilst maintaining compatibility with postgres