======
:release-date: 2015-10-12 12:00 PM PDT
:release-by: Ask Solem
.. admonition:: Django transport migrations.
If you're using Django 1.8 and have already created the
kombu_transport_django tables, you have to run a fake initial migration:
.. code-block:: console
$ python manage.py migrate kombu_transport_django --fake-initial
- No longer compatible with South by default.
To keep using kombu.transport.django with South migrations
you now need to configure a new location for the kombu migrations:
.. code-block:: python
SOUTH_MIGRATION_MODULES = {
'kombu_transport_django':
'kombu.transport.django.south_migrations',
}
- Keep old South migrations in ``kombu.transport.django.south_migrations``.
- Now works with Redis < 2.10 again.
.. _version-3.0.27: