Changes between Initial Version and Version 1 of Ticket #11265, comment 10


Ignore:
Timestamp:
Feb 13, 2023, 4:39:19 AM (15 months ago)
Author:
elonzh

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11265, comment 10

    initial v1  
    11This is funny, I have a model `Biblio` with a `issn` field, someday I created a new model `IssnIndexedData`  with `issn` as primary key.
    22
    3  I want to join `IssnIndexedData` but it can not be done unless I add a logic Foreignkey `issn_indexed_data` with `db_column="issn"` to `Biblio`. (See https://code.djangoproject.com/ticket/29262)
     3I want to join `IssnIndexedData` but it can not be done unless I add a logic Foreignkey `issn_indexed_data` with `db_column="issn"` to `Biblio`. (See https://code.djangoproject.com/ticket/29262)
    44
    55Fine, I just make a fake migration to make Django happy.
Back to Top