| 34 | |
| 35 | |
| 36 | class CollectionType(models.Model): |
| 37 | owner = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) |
| 38 | uid = models.BinaryField(editable=True, blank=False, null=False, db_index=True, unique=True, max_length=1024) |
| 39 | |
| 40 | objects: models.manager.BaseManager["CollectionType"] |
| 41 | |
| 42 | |
| 43 | class Collection(models.Model): |
nothing calls this directly
no outgoing calls
no test coverage detected