sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by Quentin Leffray** Running Alembic autogenerate do not detect inherited columns from a parent table, and flag them as "to-be-dropped". The model is defined as follow:...
**Migrated issue, originally created by vitaly numenta** I'd like to start by professing my appreciation for alembic (and sqlalchemy) - great job! I don't know if I picked the correct...
**Migrated issue, originally created by lu_zero NA** Example: ~~~ roles = db.Table('roles', db.Column('customer_id', db.Integer, db.ForeignKey('customer.id')), db.Column('company_id', db.Integer, db.ForeignKey('company.id')), # db.Column('role_id', db.Integer, db.ForeignKey('role.id')) ) """ class Role(db.Model): id = db.Column(db.Integer, primary_key...
**Migrated issue, originally created by David Beitey ([davidjb](https://github.com/davidjb))** When attempting to invalidate or set a value for a class or instance method that's being cached via ``CacheRegion.cache_on_arguments``, the first argument...
**Migrated issue, originally created by Marc Abramowitz ([msabramo](https://github.com/msabramo))** Current behavior is that if the cache key is empty or invalidated, the first worker will start regenerating and other workers will...
**Migrated issue, originally created by jvanasco ([jvanasco](https://github.com/jvanasco))** This may be too much of a performance hit, if so -- it's an inappropriate idea. I needed to create a logging/auditing trail...
**Migrated issue, originally created by Michael Bayer ([zzzeek](https://github.com/zzzeek))**
**Migrated issue, originally created by Wolfgang Schnerring ([wosc](https://github.com/wosc))** `function_key_generator` defines `to_str=compat.string_type` by default, which is `str` on Python2 (so breaks when the function gets non-ascii arguments). The tests don't catch...
**Migrated issue, originally created by s ([sontek](https://github.com/sontek))** Currently dogpile.cache has the created time stored in metadata in the cache, inside value.metadata["ct"] but doesn't expose this anywhere. We have some very...
**Migrated issue, originally created by David Gardner ()** Ran into this issue in production where users were reporting items in the cache being an hour old for a cache region...