mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-04-24 00:44:45 +00:00
Merge branch 'master' into json-datatype
This commit is contained in:
commit
8ecd0e241b
1 changed files with 1 additions and 1 deletions
|
|
@ -396,7 +396,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_json = JSONField(default=dict, encoder=DjangoJSONEncoder, blank = True, null = True)
|
||||
|
||||
value_enum = models.ForeignKey(
|
||||
|
|
|
|||
Loading…
Reference in a new issue