Changes between Initial Version and Version 1 of Ticket #33709
- Timestamp:
- May 14, 2022, 11:33:36 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33709 – Description
initial v1 5 5 The following model are sufficient to reproduce the issue: 6 6 7 ``` 7 {{{ 8 8 class Book(models.Model): 9 9 name = models.CharField(max_length=255) … … 13 13 class Tag(models.Model): 14 14 name = models.CharField(max_length=255) 15 ``` 15 }}} 16 16 17 17 The resulting schema for the testapp_book_tags looks like: 18 18 19 ``` 19 {{{ 20 20 test=> \d testapp_book_tags; 21 21 Table "public.testapp_book_tags" … … 25 25 book_id | bigint | | not null | 26 26 tag_id | bigint | | not null | 27 ``` 27 }}}