Alembic is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.
3
votes
1answer
475 views
+100
No changes detected in Alembic autogeneration of migrations with Flask-SQLAlchemy
I'm having trouble getting Alembic to autogenerate candidate migrations from changes to classes using db.Model (Flask-SQLAlchemy) instead of Base.
I've modified env.py to create my Flask app, import ...
1
vote
1answer
14 views
Can Alembic Autogenerate column alterations?
I was able to use
alembic --autogenerate for when adding / removing columns.
However, when I wanted to modify for example a "url" column from 200 characters to 2000 characters, it doesn't detect the ...
0
votes
1answer
8 views
How to create postgresql's sequences in Alembic
I'm using alembic to maintain my tables. At the same time, I update my models using the declarative way.
This is one the alembic's table:
op.create_table(
'groups',
Column('id', Integer, ...
0
votes
1answer
232 views
Using the SQLAlchemy ORM inside an Alembic migration: how do I?
I currently have a column that contains HTML markup. Inside that markup, there is a timestamp that I want to store in a new column (so I can query against it). My idea was to do the following in a ...
2
votes
0answers
72 views
alembic/env.py target_metadata = metadata “No module name al_test.models”
When I use alembic to control the version of my project's database,part of codes in env.py
like:
# add your model's MetaData object here
# for 'autogenerate' support
# from myapp import mymodel
# ...
1
vote
0answers
85 views
how to create 'view migration' script using alembic tool
Does somebody know how to use create_view function to create a view using alembic upgrade function?
for example, we have:
CREATE VIEW myview AS
SELECT column_name(s)
FROM table_name
WHERE condition
...
0
votes
0answers
9 views
Alembic autogenerates empty Flask-SQLAlchemy migrations
I'm using Alembic to handle migrations for Flask. alembic revision --autogenerate should, in theory, autogenerate a migration based on changes in my database. However, Alembic is simply generating a ...
0
votes
0answers
26 views
Alembic detects changes but produces empty migration with --autogenerate
I'm trying to get alembic working auto-producing migrations with the --autogenerate flag.
When I run alembic -n mydbname --autogenerate -m "my message" I get something like:
INFO ...