diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2021-05-28 23:52:57 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-10-01 13:11:34 +0200 |
| commit | e76f9d5b443845639262e18d9020ef4b070f1c7d (patch) | |
| tree | 1119213b5e3143318040026770efc649c1fd260d /tests/postgres_tests/models.py | |
| parent | bd47b9bc816bf213b6d0027ed9a9a44955bb7694 (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.py | 2 |
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) |
