diff options
| author | Nikita Marchant <nikita.marchant@gmail.com> | 2021-09-15 12:57:49 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-09-17 13:05:15 +0200 |
| commit | 4e4082f9396e21de0bd88dbfc651da9ad01c7c0c (patch) | |
| tree | 34d93d1ef520a097f95cf46cd854ea47700214ef /tests/postgres_tests/migrations | |
| parent | 4ca508a68916dd43da45fd6e8b9004824a62d9c8 (diff) | |
Fixed #32492 -- Added TrigramWordSimilarity() and TrigramWordDistance() on PostgreSQL.
Diffstat (limited to 'tests/postgres_tests/migrations')
| -rw-r--r-- | tests/postgres_tests/migrations/0002_create_test_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/migrations/0002_create_test_models.py b/tests/postgres_tests/migrations/0002_create_test_models.py index c3ab5efed7..1ce875441b 100644 --- a/tests/postgres_tests/migrations/0002_create_test_models.py +++ b/tests/postgres_tests/migrations/0002_create_test_models.py @@ -110,7 +110,7 @@ class Migration(migrations.Migration): name='CharFieldModel', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('field', models.CharField(max_length=16)), + ('field', models.CharField(max_length=64)), ], options=None, bases=None, |
