mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Fixed #28626 -- Dropped support for PostgreSQL 9.3.
Thanks Simon Charette for the introspection changes.
This commit is contained in:
parent
ea7ca5db30
commit
1d8cfa3608
13 changed files with 18 additions and 53 deletions
|
@ -1,7 +1,6 @@
|
|||
from io import StringIO
|
||||
|
||||
from django.core.management import call_command
|
||||
from django.test import skipUnlessDBFeature
|
||||
from django.test.utils import modify_settings
|
||||
|
||||
from . import PostgreSQLTestCase
|
||||
|
@ -20,7 +19,6 @@ class InspectDBTests(PostgreSQLTestCase):
|
|||
for field_output in field_outputs:
|
||||
self.assertIn(field_output, output)
|
||||
|
||||
@skipUnlessDBFeature('has_jsonb_datatype')
|
||||
def test_json_field(self):
|
||||
self.assertFieldsInModel(
|
||||
'postgres_tests_jsonmodel',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue