sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by Glen Fletcher** I'm not sure whether this is a problem with the documentation or the code. However I suspect its the documentation that is at...
**Migrated issue, originally created by Alex Rothberg** I suggest adding a section to the docs with links to external, community, projects that extend Alembic. Alembic currently has a [plugin system](https://alembic.zzzcomputing.com/en/latest/api/operations.html#operation-plugins)...
**Migrated issue, originally created by Wichert Akkerman ([@wichert](https://github.com/wichert))** I was about to create a patch to support use of resource specs in version_locations, only to discover in the code that...
**Migrated issue, originally created by berend ([@berend](https://github.com/berend))** Given a sqlite3 table with `__tableargs__ = {'sqlite_autoincrement': True}` and a `batch_op` migration touching that table: Model. initial migration ``` def upgrade(): op.create_table('person',...
**Migrated issue, originally created by Tim Mitchell** Given a migration from ``` # original table class Customer(Base): id = Column(Integer, primary_key=True, autoincrement=True) name = Column(Unicode, nullable=False) ``` to this ```...
**Migrated issue, originally created by Rémy Roy ([@remyroy](https://github.com/remyroy))** IF EXISTS and IF NOT EXISTS are already part of many DBMSs DDL vocabulary. They have many use cases which are highly...
**Migrated issue, originally created by Michael Nagel** As far as I can tell it is currently not possible to create and/or manage triggers. Is this correct? Has there been any...
**Migrated issue, originally created by Anonymous**
**Migrated issue, originally created by leo.wandersleb ([@giszmo](https://github.com/giszmo))** I'm struggling with this situation and can't even find others to have this situation, so not sure if I miss something very very...
**Migrated issue, originally created by Gaetan ([@Stibbons](https://github.com/Stibbons))** Dropping view can only be done by issuing an SQL statement: op.execute('DROP VIEW bz_builds') Having a drop_view similar to drop_table doesn't seem to...