I have a Table with the following column:
Column('type', String(128))
How to set this column to NULL when inserting a new row into the database?
I tried to do this:
self.type = NULL;
There is no NULL type in Python, so I don't know how to do this.
source share