| 18 | |
| 19 | |
| 20 | class Book(ormar.Model): |
| 21 | ormar_config = ormar_base_config.copy() |
| 22 | |
| 23 | id: int = ormar.Integer(primary_key=True) |
| 24 | title: str = ormar.String(max_length=200) |
| 25 | author: str = ormar.String(max_length=100) |
| 26 | genre: str = ormar.String( |
| 27 | max_length=100, |
| 28 | default="Fiction", |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | @create_drop_database(base_config=ormar_base_config) |