| 18 | |
| 19 | |
| 20 | class Company(ormar.Model): |
| 21 | ormar_config = ormar_base_config.copy(tablename="companies") |
| 22 | |
| 23 | id: int = ormar.Integer(primary_key=True) |
| 24 | name: str = ormar.String(max_length=100) |
| 25 | founded: int = ormar.Integer(nullable=True) |
| 26 | |
| 27 | |
| 28 | class Car(ormar.Model): |