sqlalchemy-bot

Results 140 issues of sqlalchemy-bot

**Migrated issue, originally created by d9k** Hi! I use alembic 0.8.5 (tried at 0.8.0 at first, then updated), postgresql 9.3, ubuntu 14.04 I have migration code ``` op.add_column('my_table', sa.Column('status', sa.Enum('one',...

feature
autogenerate - detection
autogenerate for enums

**Migrated issue, originally created by Jeroen Ruigrok van der Werven ([@asmodai](https://github.com/asmodai))** Hi Mike, saw that you had already added wheel to your setup.cfg, but could you also upload the wheels...

easy
installation

**Migrated issue, originally created by Wil Tan** In offline mode, Alembic emits IDENTITY INSERT mode control statements. However, in online mode, it does not do so. There are a few...

feature
low priority
execution model

**Migrated issue, originally created by Danny Milosavljevic** Hi, postgresql automatically truncates too-long index names (for the limit see "SELECT max_identifier_length - 1 FROM pg_control_init()") but alembic does not truncate index...

bug
autogenerate - detection
low priority
naming convention issues

**Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))** one easy way to work around this is to apply the max_ident rules in autogen on the metadata side. just not sure...

bug
autogenerate - detection
Tier 1
naming convention issues

**Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))** probably. these names are from the DB and should never have naming conventions applied to them. ``` diff --git a/alembic/autogenerate/compare.py b/alembic/autogenerate/compare.py index...

bug
autogenerate - rendering
Fast-Track
naming convention issues

**Migrated issue, originally created by dradetsky ([@dradetsky](https://github.com/dradetsky))** Usage would be something like `alembic revision --autogenerate --print`. The result would be to output the generated python to stdout, rather than creating...

feature

**Migrated issue, originally created by Michael Bayer ([@zzzeek](https://github.com/zzzeek))** so that %(here)s can be in the logging config. this is basically a change to env.py.mako.

feature
migration environment
Fast-Track

**Migrated issue, originally created by Jake Hunsaker ([@turboturtle](https://github.com/turboturtle))** This feature request is for a cookbook recipe to automatically run a migration against trivial schema changes (i.e. add/drop columns, at most...

feature
Tier 1

**Migrated issue, originally created by spanosgeorge** Hello, if I'm reading correctly the source code, right now alembic doesn't support running `ALTER ONLINE TABLE` DDL statements. Correct? If indeed that's the...

feature
op directives
Tier 1