sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by jvanasco ([@jvanasco](https://github.com/jvanasco))** discussed previously in * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/MUyt8zYaP0c/ht4fGR9q9w8J * https://groups.google.com/forum/#!searchin/sqlalchemy/icontains/sqlalchemy/331XoToT4lk/RPjIYNTkSEIJ I tried doing this myself, but don't know enough of the internals to get this done...
**Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))** We can get support for "date2 - date1" pretty easily for most backends at this point, now that we have full control...
**Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))** e.g.: ``` from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class A(Base): __tablename__ = 'a'...
**Migrated issue, originally created by Anonymous** This would have to build upon the "optimized_compare" logic so that a JOIN would not be needed for the primary use case of a...
**Migrated issue, originally created by Josh Kupershmidt ([@schmiddy](https://github.com/schmiddy))** I was a little surprised to see that the `alembic_version` table records only the current `version_num`, without even a timestamp indicating when...
**Migrated issue, originally created by Wichert Akkerman ([@wichert](https://github.com/wichert))** I have a data model which has a simple enum column: ``` size_type = schema.Column( types.Enum('normal', 'plus', name='size_type_type'), nullable=False, default='normal') ``` as...
**Migrated issue, originally created by Adrian Vogelsgesang ([@vogelsgesang](https://github.com/vogelsgesang))** If the schema contains circular dependencies, the order of the `CREATE TABLE` statements is incorrect. This is because `metadata.sorted_tables` (used [here](https://bitbucket.org/zzzeek/alembic/src/1c67b1ab8c6fe273d4e175a14f0df5d3cbbd0edc/alembic/autogenerate/compare.py?at=master&fileviewer=file-view-default#compare.py-73)) returns...
**Migrated issue, originally created by Ulrich Petri ([@ulope](https://github.com/ulope))** According to #67 enum types used in columns have to be explicitly created and destroyed. However the autogenerator currently doesn't produce those...
**Migrated issue, originally created by Jeremy Field ([@jdf-id-au](https://github.com/jdf-id-au))** Using `batch_alter_table` to change an Enum in sqlite causes `CHECK` constraint for *another* Enum to be lost. Working example at [repo](https://bitbucket.org/jdf-id-au/alembic-bug-report). The...
**Migrated issue, originally created by Alex Rothberg** If I start with the following and then uncomment the CheckConstraint, alembic does not handle the migration adding it or even print a...