MCPcopy
hub / github.com/tortoise/tortoise-orm / Team

Class Team

examples/relations.py:51–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49
50
51class Team(Model):
52 id = fields.IntField(primary_key=True)
53 name = fields.TextField()
54
55 events: fields.ManyToManyRelation[Event]
56
57 def __str__(self):
58 return self.name
59
60
61async def run():

Callers 1

runFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…