| 3034 | @isolate_apps("schema") |
| 3035 | def test_check_constraint_exact_jsonfield(self): |
| 3036 | class JSONConstraintModel(Model): |
| 3037 | data = JSONField() |
| 3038 | |
| 3039 | class Meta: |
| 3040 | app_label = "schema" |
| 3041 | |
| 3042 | with connection.schema_editor() as editor: |
| 3043 | editor.create_model(JSONConstraintModel) |