summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/models.py
diff options
context:
space:
mode:
authorNikita Marchant <nikita.marchant@gmail.com>2021-09-15 12:57:49 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-17 13:05:15 +0200
commit4e4082f9396e21de0bd88dbfc651da9ad01c7c0c (patch)
tree34d93d1ef520a097f95cf46cd854ea47700214ef /tests/postgres_tests/models.py
parent4ca508a68916dd43da45fd6e8b9004824a62d9c8 (diff)
Fixed #32492 -- Added TrigramWordSimilarity() and TrigramWordDistance() on PostgreSQL.
Diffstat (limited to 'tests/postgres_tests/models.py')
-rw-r--r--tests/postgres_tests/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/models.py b/tests/postgres_tests/models.py
index c7f55a2661..ddae9d1edb 100644
--- a/tests/postgres_tests/models.py
+++ b/tests/postgres_tests/models.py
@@ -83,7 +83,7 @@ class ArrayEnumModel(PostgreSQLModel):
class CharFieldModel(models.Model):
- field = models.CharField(max_length=16)
+ field = models.CharField(max_length=64)
class TextFieldModel(models.Model):