Why isn’t SQLAlchemy default column value available before object is committed?
one would prefer default over server default for one of four reasons: you’d like to run a Python function, not a SQL function, for the default (or a SQL expression that needs some per-INSERT Python state also). the default is part of a primary key column. the ORM can’t load a row back without the … Read more