autos working!
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from sqlalchemy import (Column, Integer,
|
||||
DECIMAL, Text,
|
||||
VARCHAR, TIMESTAMP,
|
||||
Date, INTEGER)
|
||||
DECIMAL,
|
||||
VARCHAR,
|
||||
DATE, INTEGER)
|
||||
from datetime import datetime, timezone
|
||||
from database import Base
|
||||
|
||||
@@ -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())
|
||||
customer_first_call = Column(DATE())
|
||||
customer_email = Column(VARCHAR(500))
|
||||
customer_automatic = Column(INTEGER)
|
||||
customer_phone_number = Column(VARCHAR(25))
|
||||
|
||||
Reference in New Issue
Block a user