Pokusil jsem se použít dvě databáze k simulaci vašeho případu a najít řešení níže:
1. Scénář:
- databáze
schema1
, kterou spravuje django (čtení a zápis) - databáze
schema2
, což je NE spravuje django
2. Kroky:
- vytvářejte migrace
python manage.py makemigrations
pro vaše modely - Generujte SQL pro svou migraci:
python manage.py sqlmigrate app 0001
.(předpokládejme, že název vygenerovaného migračního souboru je0001_initial.py
od kroku 1 )
SQL pro tuto migraci by měl vypadat takto:
CREATE TABLE `user_info` (`id_id` integer NOT NULL PRIMARY KEY, `name` varchar(20) NOT NULL);
ALTER TABLE `user_info` ADD CONSTRAINT `user_info_id_id_e8dc4652_fk_schema2.user_extra_info_id` FOREIGN KEY (`id_id`) REFERENCES `user_extra_info` (`id`);
COMMIT;
Pokud spustíte výše uvedený sql přímo, skončíte s chybou, jako je tato:
django.db.utils.OperationalError: (1824, "Failed to open the referenced table 'user_extra_info'")
Je to proto, že django předpokládá, že všechny vaše kroky migrace jsou provedeny ve stejné databázi . Nemůže tedy zjistit user_extra_info
v schema1
databáze.
3. Následující kroky:
-
Explicitně specifikujte databázi
schema2
pro tabulkuuser_extra_info
:ALTER TABLE `user_info` ADD CONSTRAINT `user_info_id_id_e8dc4652_fk_schema2.user_extra_info_id` FOREIGN KEY (`id_id`) REFERENCES schema2.user_extra_info (`id`);
-
Ručně spusťte revidovaný sql v
schema1
databáze. -
Řekněte django, že jsem migraci provedl sám:
python manage.py migrate --fake
-
Hotovo!!
Zdrojový kód Pro vaši informaci:
models.py
from django.db import models
class UserExtraInfo(models.Model):
# table in schema2, not managed by django
name = models.CharField('name', max_length=20)
class Meta:
managed = False
db_table = 'user_extra_info'
class UserInfo(models.Model):
# table in schema1, managed by django
id = models.OneToOneField(
UserExtraInfo,
on_delete=models.CASCADE,
primary_key=True
)
name = models.CharField('user name', max_length=20)
class Meta:
db_table = 'user_info'
settings.py
# Database
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'schema1',
'USER': 'USER',
'PASSWORD': 'PASSWORD',
'HOST': 'localhost',
'PORT': 3306,
},
'extra': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'schema2',
'USER': 'USER',
'PASSWORD': 'PASSWORD',
'HOST': 'localhost',
'PORT': 3306,
}
}
DATABASE_ROUTERS = ['two_schemas.router.DBRouter']
router.py
class DBRouter(object):
"""
A router to control all database operations on models in the
auth application.
"""
def db_for_read(self, model, **hints):
"""
Attempts to read auth models go to auth_db.
"""
if model._meta.db_table == 'user_extra_info':
# specify the db for `user_extra_info` table
return 'extra'
if model._meta.app_label == 'app':
return 'default'
return None
def db_for_write(self, model, **hints):
"""
Attempts to write auth models go to auth_db.
"""
if model._meta.db_table == 'user_extra_info':
# specify the db for `user_extra_info` table
return 'extra'
if model._meta.app_label == 'app':
return 'default'
return None
def allow_relation(self, obj1, obj2, **hints):
"""
Relations between objects are allowed if both objects are
in the primary/replica pool.
"""
db_list = ('default', 'extra')
if obj1._state.db in db_list and obj2._state.db in db_list:
return True
return None
def allow_migrate(self, db, app_label, model_name=None, **hints):
"""
Make sure the auth app only appears in the 'auth_db'
database.
"""
if app_label == 'app':
return db == 'default'
return None