Fixed a variable

This commit is contained in:
2024-06-20 10:43:53 -04:00
parent 11b023cd2b
commit 187588d3ae
4 changed files with 85 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ class Customer_Customer(Base):
customer_town = Column(VARCHAR(140))
customer_state = Column(Integer)
customer_zip = Column(VARCHAR(25))
customer_first_call = Column(TIMESTAMP(), default=datetime.utcnow())
customer_first_call = Column(TIMESTAMP(), default=datetime.datetime.utcnow())
customer_email = Column(VARCHAR(500))
customer_automatic = Column(Integer)
customer_phone_number = Column(VARCHAR(25))