swag-shop/backend/app/schemas/shop_schemas.py

9 lines
252 B
Python

from sqlmodel import Field, SQLModel
class ShopCreate(SQLModel):
name: str = Field(max_length=100, nullable=False, unique=True)
description: str = Field(max_length=500, nullable=False)
currency: str = Field(max_length=3, nullable=False)