(table)
| 41 | |
| 42 | @staticmethod |
| 43 | def get_primary_key_columns(table): |
| 44 | with connection.cursor() as cursor: |
| 45 | return connection.introspection.get_primary_key_columns(cursor, table) |
| 46 | |
| 47 | def test_pk_updated_if_field_updated(self): |
| 48 | user = User.objects.get(pk=self.user.pk) |
no test coverage detected