5 lines
114 B
Python
5 lines
114 B
Python
from sqlmodel import SQLModel, Field
|
|
|
|
|
|
class Listing(SQLModel, table=True):
|
|
id: int = Field(primary_key=True)
|