abe-winter
abe-winter
### Checklist - [x] The bug is reproducible against the latest release and/or `master`. - [x] There are no similar issues or pull requests to fix it yet. ### Describe...
### Bug description I think I'm getting a spurious undefined-loop-variable warning when: - walrus expression in 'if' block of list comprehension - loop variable in list comprehension (`x`, here) is...
When I add a unique index to a field, the index name for the downgrade command has the wrong prefix (uid_ vs idx_). This is the migration: ``` -- upgrade...
Hi, Love capnproto, love pycapnp but I'm doing a lot of casting to nametuple to get `==`, `in`, `__hash__` features. If nobody has started to add these, I'd be happy...
seems like this is triggering drop / add ```diff - create unique index tbl_x_y on levels(x, y); + create unique index tbl_x_y on levels (x, y); ``` and it shouldn't
* column order matters in `select *` case and, maybe, in certain dump formats * currently automig adds column at end (i.e. no `before` / `after`) * need to add...
example failure: ```sql psycopg2.errors.SyntaxError: syntax error at or near "bool" LINE 6: alter table users drop column notify_email bool; ``` obvious why this is invalid sql and what the change...
* am taking advantage of all-or-nothing mode in postgres? (double check this) * probably need to use a transaction in sqlite instead
running down a possible bug in our parser library for now, you should use `timestamp` instead of `datetime` columns `datetime` will break diffs
* sqlite users shouldn't have to install psyco * solution: move common code to actual common so automig_sqlite doesn't import migrate_pg * traceback: ```python automig_sqlite --glob schema.sql init Traceback (most...