summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/models.py
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-05-28 23:52:57 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-10-01 13:11:34 +0200
commite76f9d5b443845639262e18d9020ef4b070f1c7d (patch)
tree1119213b5e3143318040026770efc649c1fd260d /tests/postgres_tests/models.py
parentbd47b9bc816bf213b6d0027ed9a9a44955bb7694 (diff)
Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.
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 fa20378071..adb2e89201 100644
--- a/tests/postgres_tests/models.py
+++ b/tests/postgres_tests/models.py
@@ -101,7 +101,7 @@ class BigAutoFieldModel(models.Model):
# Scene/Character/Line models are used to test full text search. They're
# populated with content from Monty Python and the Holy Grail.
class Scene(models.Model):
- scene = models.CharField(max_length=255)
+ scene = models.TextField()
setting = models.CharField(max_length=255)