small fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from sqlalchemy import Column, Integer,\
|
||||
DECIMAL, TEXT,\
|
||||
VARCHAR, TIMESTAMP, DATE
|
||||
VARCHAR, BOOLEAN, DATE
|
||||
from database import Base
|
||||
|
||||
|
||||
@@ -26,4 +26,5 @@ class MoneyDelivery(Base):
|
||||
total_discount_total = Column(DECIMAL(6, 2))
|
||||
taxes_paid = Column(DECIMAL(6, 2))
|
||||
total_profit = Column(DECIMAL(6, 2))
|
||||
total_profit_oil = Column(DECIMAL(6, 2))
|
||||
total_profit_oil = Column(DECIMAL(6, 2))
|
||||
auto = Column(BOOLEAN)
|
||||
Reference in New Issue
Block a user