Changes between Version 2 and Version 4 of Ticket #28950


Ignore:
Timestamp:
Dec 21, 2017, 4:29:01 AM (6 years ago)
Author:
tejinderss
Comment:

This bug seems to be valid only when the postgres arrayfield is used in the inline model

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28950 – Description

    v2 v4  
    22
    33{{{
     4    from django.contrib.postgres.fields import ArrayField
     5
    46    class Foo(models.Model):
    5         ....
     7        field = models.CharField(max_length=200)
    68
    79    class Bar(models.Model):
    810        foo = models.OneToOneField(Foo)
    911        required_field = models.CharField(blank=False)
     12        array_field = ArrayField(models.CharField(max_length=50, blank=true), blank=True, null=True)
    1013}}}
    1114
Back to Top