In User table the column description
column is a string.
But while update that column with empty string ''
using sqlalchemy alembic, It will be saved as ""
.
for row in sa_session.query(Modelpackage):
setattr(row, 'description', '')
Is there any way to saved it without double quotes ""
?
Actual Result:-
Expected Result:-