Add content to shop page
This commit is contained in:
@@ -52,6 +52,8 @@ class Area(Base):
|
||||
__tablename__ = TABLE_PREFIX + "area"
|
||||
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
|
||||
name: Mapped[str] = mapped_column(nullable=False, unique=True)
|
||||
description: Mapped[str] = mapped_column(nullable=True)
|
||||
image_path: Mapped[str] = mapped_column(nullable=True)
|
||||
|
||||
|
||||
class Product(Base):
|
||||
|
||||
Reference in New Issue
Block a user