| 530 | @isolate_apps("schema") |
| 531 | def test_char_field_pk_to_auto_field(self): |
| 532 | class Foo(Model): |
| 533 | id = CharField(max_length=255, primary_key=True) |
| 534 | |
| 535 | class Meta: |
| 536 | app_label = "schema" |
| 537 | |
| 538 | with connection.schema_editor() as editor: |
| 539 | editor.create_model(Foo) |
nothing calls this directly
no test coverage detected