You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in case when you want to add this framework in already existing project with the separate database
it won't work
it will fallback to default database always
The text was updated successfully, but these errors were encountered:
I too wanted to keep the activity in a separate database, but it doesn't work.
Because of the heavy reliance on contentypes a db router doesn't work. If you allow the contenttypes to be created in the secondary database, it's out of sync with the default database, and generic lookups fail. If you don't allow contenttpes in the secondary database, one gets errors since django_content_type does not exist.
Anyway seems that doesn't work if a model exist in a secondary database that doesn't have the contentypes table.
Maybe with a custom router? I will test in that way.
in case when you want to add this framework in already existing project with the separate database
it won't work
it will fallback to default database always
The text was updated successfully, but these errors were encountered: