Changes between Initial Version and Version 1 of Ticket #33709


Ignore:
Timestamp:
May 14, 2022, 11:33:36 AM (2 years ago)
Author:
Jeremy Lainé
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33709 – Description

    initial v1  
    55The following model are sufficient to reproduce the issue:
    66
    7 ```
     7{{{
    88class Book(models.Model):
    99    name = models.CharField(max_length=255)
     
    1313class Tag(models.Model):
    1414    name = models.CharField(max_length=255)
    15 ```
     15}}}
    1616
    1717The resulting schema for the testapp_book_tags looks like:
    1818
    19 ```
     19{{{
    2020test=> \d testapp_book_tags;
    2121                             Table "public.testapp_book_tags"
     
    2525 book_id | bigint  |           | not null |
    2626 tag_id  | bigint  |           | not null |
    27 ```
     27}}}
Back to Top