In the below example given here: https://sqlmodel.tiangolo.com/tutorial/create-db-and-table/
from sqlmodel import Field, SQLModel
class Hero(SQLModel, table=True):
id: int = Field(default=None, primary_key=True)
name: str
secret_name: str
age: Optional[int] = None
How can create the schema which uses only name
and age
and ignores the other variables/rows ?