Open
Description
Whenever I have SQLAlchemy table column with a default value (e.g. Column("verified", Boolean(), default=False)
), the resulting insert statement generated by databases
sets a null
value for the column when that column isn't provided (e.g. db.execute(mytable.insert(), {...})
where "verified" isn't set).
Are there plans to support column defaults in insert statements?