This commit is contained in:
2024-04-04 16:39:29 -04:00
parent de448a35d1
commit 5d80acfcea
24 changed files with 298 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
from sqlalchemy import Column, Integer,\
Integer, DECIMAL, Text,\
DECIMAL, Text,\
VARCHAR, TIMESTAMP, Date
from datetime import datetime
from app.database import Base
@@ -48,5 +48,3 @@ class Delivery(Base):
pre_charge_amount = Column(DECIMAL(50, 2))
total_price = Column(DECIMAL(50, 2))
final_price = Column(DECIMAL(50, 2))