mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
Replaces NullBoolean with Boolean (closes: #56)
This commit is contained in:
parent
6cd8163099
commit
851ca4cc74
1 changed files with 1 additions and 1 deletions
|
|
@ -381,7 +381,7 @@ class Value(models.Model):
|
|||
value_float = models.FloatField(blank = True, null = True)
|
||||
value_int = models.IntegerField(blank = True, null = True)
|
||||
value_date = models.DateTimeField(blank = True, null = True)
|
||||
value_bool = models.NullBooleanField(blank = True, null = True)
|
||||
value_bool = models.BooleanField(blank = True, null = True)
|
||||
|
||||
value_enum = models.ForeignKey(
|
||||
EnumValue,
|
||||
|
|
|
|||
Loading…
Reference in a new issue