Update README.rst

This commit is contained in:
Iacopo Spalletti 2015-06-11 18:00:12 +02:00
parent 150de8866f
commit 847710fc05
1 changed files with 5 additions and 5 deletions

View File

@ -114,13 +114,13 @@ suited for your deployment.
META_SITE_PROTOCOL = 'http'
META_USE_SITES = True
* If you are using Django 1.7, be aware than ``filer``, ``cmsplugin_filer``
and ``django-cms`` currently requires you to setup ``MIGRATION_MODULES`` in settings::
* If you are using Django 1.7, be aware than ``filer`` < 0.9.10, ``cmsplugin_filer``
and ``django-cms`` < 3.1 currently requires you to setup ``MIGRATION_MODULES`` in settings::
MIGRATION_MODULES = {
'cms': 'cms.migrations_django',
'menus': 'menus.migrations_django',
'filer': 'filer.migrations_django',
'cms': 'cms.migrations_django', # only for django CMS 3.0
'menus': 'menus.migrations_django', # only for django CMS 3.0
'filer': 'filer.migrations_django', # only for django filer 0.9.9 and below
'cmsplugin_filer_image': 'cmsplugin_filer_image.migrations_django',
}