Changes between Initial Version and Version 1 of Ticket #11265, comment 10
- Timestamp:
- Feb 13, 2023, 4:39:19 AM (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11265, comment 10
initial v1 1 1 This is funny, I have a model `Biblio` with a `issn` field, someday I created a new model `IssnIndexedData` with `issn` as primary key. 2 2 3 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) 4 4 5 5 Fine, I just make a fake migration to make Django happy.