wrongmove/crawler/models/listing.py

6 lines
114 B
Python
Raw Normal View History

from sqlmodel import SQLModel, Field
class Listing(SQLModel, table=True):
id: int = Field(primary_key=True)