I have the following column in SQLAlchemy:
name = Column(String(32), nullable=False)
I want that if no value is passed onto an insertion, it should enter a default value of either completely blank or if not possible, then default as NULL.
Should I define the column as :
name = Column(String(32), nullable=False, default=NULL)
Because in python NULL
object is actually None
Any suggestions?