mirror of
https://github.com/django/django.git
synced 2025-10-17 05:47:44 +00:00
Fixed #23423 -- Added unaccent lookup in django.contrib.postgres
This commit is contained in:
parent
47789410db
commit
17fe0bd808
12 changed files with 163 additions and 4 deletions
|
@ -24,3 +24,11 @@ class NestedIntegerArrayModel(models.Model):
|
|||
|
||||
class HStoreModel(models.Model):
|
||||
field = HStoreField(blank=True, null=True)
|
||||
|
||||
|
||||
class CharFieldModel(models.Model):
|
||||
field = models.CharField(max_length=16)
|
||||
|
||||
|
||||
class TextFieldModel(models.Model):
|
||||
field = models.TextField()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue