Просмотр исходного кода

Merge pull request #3122 from gitaarik/master

updated docs about migrating celery in Django
Ask Solem Hoel 10 лет назад
Родитель
Сommit
949ad1b053
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      docs/django/first-steps-with-django.rst

+ 3 - 2
docs/django/first-steps-with-django.rst

@@ -163,13 +163,14 @@ To use this with your project you need to follow these four steps:
     by the database periodic task scheduler.  You can skip
     by the database periodic task scheduler.  You can skip
     this step if you don't use these.
     this step if you don't use these.
 
 
-    If you are using south_ for schema migrations, you'll want to:
+    If you are using Django 1.7+ or south_, you'll want to:
 
 
     .. code-block:: console
     .. code-block:: console
 
 
         $ python manage.py migrate djcelery
         $ python manage.py migrate djcelery
 
 
-    For those who are not using south, a normal ``syncdb`` will work:
+    For those who are on Django 1.6 or lower and not using south, a normal
+    ``syncdb`` will work:
 
 
     .. code-block:: console
     .. code-block:: console