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