diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-12-03 09:30:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-03 09:30:33 +0100 |
| commit | d746f28949c009251a8741ba03d156964050717f (patch) | |
| tree | d2341d5ea529ca1fccc57856e04b7a1eb115495f /tests/postgres_tests/migrations | |
| parent | 48b4bae983a1f9a73624fe62ef5bd1130b0dba39 (diff) | |
Refs #27095 -- Fixed test_contained_by_including_F_object when run in reverse.
Tests should not rely on auto PKs.
Test regression in 33403bf80f635577a18426bc99c8a65e31fd8dfa.
Diffstat (limited to 'tests/postgres_tests/migrations')
| -rw-r--r-- | tests/postgres_tests/migrations/0002_create_test_models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/postgres_tests/migrations/0002_create_test_models.py b/tests/postgres_tests/migrations/0002_create_test_models.py index cd8b20ae01..c3ab5efed7 100644 --- a/tests/postgres_tests/migrations/0002_create_test_models.py +++ b/tests/postgres_tests/migrations/0002_create_test_models.py @@ -99,6 +99,7 @@ class Migration(migrations.Migration): 'field_nested', ArrayField(ArrayField(models.IntegerField(), size=None, null=True), size=None, null=True), ), + ('order', models.IntegerField(null=True)), ], options={ 'required_db_vendor': 'postgresql', |
