I\'ve a Table with the following column:
Table
Column(\'type\', String(128))
How do I set this column to NULL when inserting a new r
Instead of trying
self.type = NULL
try as Yaroslav Admin suggested
self.type = None
As Python's equivalent for NULL is None.