I want to update a row in mysql database and use the default value of the column. i tried to make this
session.query(TableName).update({'column1': None,
'column2': None,
'column3': None}, False)
but it didn't work. any ideas?