Last active
August 7, 2023 09:32
-
-
Save gcko/de1383080e9f8fb7d208 to your computer and use it in GitHub Desktop.
Django Custom Model ForeignKey Field for Spanning Databases
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to use this class to allow for a lookup of a user in auth_user in a 'default' DB , different from my application DB. ('test2' here).
the table I created looks like:
CREATE TABLE IF NOT EXISTS "test2_m1" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "description" text NOT NULL, "user_id" integer NOT NULL ); -- no foreign key
But when I run these statements, Django generates the following query wth an INNER JOIN to auth_user, and SpanningForeignKey.validate() is not called at all (I added a debug line to test):
The problem here is that the underlying Django code still wants to form a query with an INNER JOIN on the app-specific DB, not the default DB, expecting "auth_user" to be in that DB.
My questions: