From 7900d2102ed89cfb23eee6016ae09dd069ab36db Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Tue, 10 Feb 2015 06:58:40 +0100 Subject: [PATCH] Add information regarding django CMS / filer MIGRATIONS_MODULES --- README.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.rst b/README.rst index b6ddc68..d86ad92 100644 --- a/README.rst +++ b/README.rst @@ -114,6 +114,15 @@ 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:: + + MIGRATION_MODULES = { + 'cms': 'cms.migrations_django', + 'filer': 'filer.migrations_django', + 'cmsplugin_filer_image': 'cmsplugin_filer_image.migrations_django', +} * Configure parler according to your languages::