Added currency to product, add products from telegram

This commit is contained in:
2022-05-03 12:07:54 +02:00
parent 692d7f7666
commit 04fc6ebc50
2 changed files with 76 additions and 2 deletions

View File

@@ -44,6 +44,7 @@ class Product(Base):
__tablename__ = 'product'
product_id = Column(String(50), primary_key=True)
price = Column(Float)
currency = Column(String(50))
image_link = Column(String(5000))
title = Column(String(5000))
description = Column(String(5000))