SQLAlchemy weekly dev meetings: https://docs.google.com/document/d/1WuzZwV_aIV_ltDR3cJ-bXxXMZ9zCfr5pFSXZGZOSSQw/edit?usp=sharing
sqlalchemy-bot on master
Add async template to Alembic … (compare)
sqlalchemy-bot on master
Add missing colon before code b… (compare)
sqlalchemy-bot on master
document declarative base made … Merge "document declarative bas… (compare)
@zzzeek - More on that RemovedIn20Warning: https://stackoverflow.com/a/64932061/2144390
nvm, it's also at sqlalchemy/sqlalchemy#5717
Column('foo', Integer, Identity())
this renders the default, but when reflecting I get back Identity(start=1, increment=1, minvalue=1, maxvalue=2147483647, cycle=False, cache=1)
@CaselIT with that kind of thing we look at the attributes and if an attribute is not set, we dont comapre it to the reflected one
that makes sense. thanks