【发布时间】:2019-03-16 10:48:10
【问题描述】:
在 django_tenants 的 apps.py 中,我看到了这个:
recommended_config = """
Warning: You should put 'django_tenants' at the end of INSTALLED_APPS:
INSTALLED_APPS = TENANT_APPS + SHARED_APPS + ('django_tenants',)
This is necessary to overwrite built-in django management commands with
their schema-aware implementations.
"""
我的问题是:这仍然有效吗?在我碰巧在代码中看到该消息之前,我们已经安装了 django_tenants (在开发中)几个星期。它不是在 INSTALLED_APPS 中的最后一次,但它似乎工作得很好。
【问题讨论】:
标签: django multi-tenant