1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed pre_syncdb and post_syncdb signals per deprecation timeline.

This commit is contained in:
Tim Graham
2014-12-26 11:19:43 -05:00
parent fed25f1105
commit f4f24d30e0
6 changed files with 9 additions and 143 deletions

View File

@@ -51,8 +51,8 @@ but a few of the key features are:
* A new ``makemigrations`` command provides an easy way to autodetect changes
to your models and make migrations for them.
:data:`~django.db.models.signals.pre_syncdb` and
:data:`~django.db.models.signals.post_syncdb` have been deprecated,
``django.db.models.signals.pre_syncdb`` and
``django.db.models.signals.post_syncdb`` have been deprecated,
to be replaced by :data:`~django.db.models.signals.pre_migrate` and
:data:`~django.db.models.signals.post_migrate` respectively. These
new signals have slightly different arguments. Check the