mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Extended changelog.
This commit is contained in:
parent
2804cd527f
commit
e3986a3e08
1 changed files with 26 additions and 0 deletions
|
|
@ -1,6 +1,32 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
1.1 (unreleased)
|
||||
----------------
|
||||
|
||||
* Added South migrations.
|
||||
|
||||
.. note::
|
||||
|
||||
If you are using South in your Django project, you can easily enable
|
||||
dbtemplates' migrations, *faking* the first migration by using the
|
||||
``--fake`` option of South's ``migrate`` management command::
|
||||
|
||||
$ manage.py migrate --fake 0001 dbtemplates
|
||||
|
||||
Then run the rest of the migrations::
|
||||
|
||||
$ manage.py migrate dbtemplates
|
||||
|
||||
* Removed uniqueness on the ``name`` field of the ``Template`` model. This is
|
||||
needed because there isn't a ``unique_together`` for M2M fields in Django
|
||||
such as the ``sites`` field in the ``Template`` model.
|
||||
|
||||
* Made the ``sites`` field optional to support a way to apply a template to
|
||||
all sites.
|
||||
|
||||
* Fixed issue with cache settings handling.
|
||||
|
||||
1.0.1 (04-14-11)
|
||||
----------------
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue