我正在使用多个数据库(同一postgresql数据库中的不同模式)处理Django 1.9和python 3.3项目。当我第一次尝试迁移项目时,我收到此错误
Running migrations: Rendering model states... DONE Applying contenttypes.0001_initial... OK Applying auth.0001_initial... OK Applying MyApp.0001_initial...Traceback (most recent call last): File "/usr/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute return self.cursor.execute(sql, params) psycopg2.ProgrammingError: ERROR: relation "auth_user" does not exist The above exception was the direct cause of the following exception: Traceback (most recent call last): File "manage.py", line 10, in execute_from_command_line(sys.argv) File "/usr/lib/python3.4/site-packages/django/core/management/__init__.py", line 350, in execute_from_command_line utility.execute() File "/usr/lib/python3.4/site-packages/django/core/management/__init__.py", line 342, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/usr/lib/python3.4/site-packages/django/core/management/base.py", line 348, in run_from_argv self.execute(*args, **cmd_options) File "/usr/lib/python3.4/site-packages/django/core/management/base.py", line 399, in execute output = self.handle(*args, **options) File "/usr/lib/python3.4/site-packages/django/core/management/commands/migrate.py", line 200, in handle executor.migrate(targets, plan, fake=fake, fake_initial=fake_initial) File "/usr/lib/python3.4/site-packages/django/db/migrations/executor.py", line 92, in migrate self._migrate_all_forwards(plan, full_plan, fake=fake, fake_initial=fake_initial) File "/usr/lib/python3.4/site-packages/django/db/migrations/executor.py", line 121, in _migrate_all_forwards state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial) File "/usr/lib/python3.4/site-packages/django/db/migrations/executor.py", line 198, in apply_migration state = migration.apply(state, schema_editor) File "/usr/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 90, in __exit__ self.execute(sql) File "/usr/lib/python3.4/site-packages/django/db/backends/base/schema.py", line 110, in execute cursor.execute(sql, params) File "/usr/lib/python3.4/site-packages/django/db/backends/utils.py", line 79, in execute return super(CursorDebugWrapper, self).execute(sql, params) File "/usr/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute return self.cursor.execute(sql, params) File "/usr/lib/python3.4/site-packages/django/db/utils.py", line 95, in __exit__ six.reraise(dj_exc_type, dj_exc_value, traceback) File "/usr/lib/python3.4/site-packages/django/utils/six.py", line 685, in reraise raise value.with_traceback(tb) File "/usr/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute return self.cursor.execute(sql, params) django.db.utils.ProgrammingError: ERROR: relation "auth_user" does not exist
当auth_user
表未迁移时,此错误似乎出现在其他项目中。在我的情况下开始使用manage.py migrate auth
进行迁移,然后迁移需要它的应用程序并没有解决问题。
我怀疑问题来自于在Django中使用不同的数据库。我的auth_user
表存储在默认数据库中, models.py 的内容将路由到其他数据库。< / p>
迁移过程是否在与我的应用数据库相同的数据库中查找auth_user
表?这是完全不同的东西吗?
答案 0 :(得分:1)
实际上这是一个跨数据库引用问题。 Django无法创建跨数据库外键。
来自Django 1.8 documentation(以下版本中没有任何解决方案(当前版本为1.10)):
跨数据库关系
Django目前不提供对外键的支持 跨多个数据库的多对多关系。如果你有 使用路由器将模型分区到不同的数据库,任何外来的 这些模型定义的密钥和多对多关系必须是 单个数据库的内部。
这是因为参照完整性。为了维持一个 两个对象之间的关系,Django需要知道的 相关对象的主键有效。如果主键是 存储在单独的数据库中,无法轻松评估 主键的有效性。
如果你在InnoDB中使用Postgres,Oracle或MySQL,那就是 在数据库完整性级别强制执行 - 数据库级别密钥 约束阻止了无法验证的关系的产生。
但是,如果您将SQLite或MySQL与MyISAM表一起使用,那么就有了 没有强制执行的参照完整性;结果,你可能会 '假'交叉数据库外键。但是,这种配置不是 由Django正式支持
在我的情况下,因为路由器正在运行,所以有一点简单来简化跨数据库对象。
class CrossDBUser(models.Model):
user = models.IntegerField()
def get_user(self):
return User.objects.get(id=self.user)
def set_user(self, user):
self.user = user.id
class MyClassWithCrossDB(CrossDBUser):
field1 = models.CharField(max_length=200, blank=False)
field2 = models.IntegerField(default=0)
有了这个,我可以使用方法set_user
和get_user
来处理存储在我的对象MyClassWithCrossDB
中的用户。
当然它并不完美,因为它不允许像on_delete=models.CASCADE
这样的自动操作,我不得不使用方法而不是实例变量。但它是解决方法的解决方案。