Alembic is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.

learn more… | top users | synonyms

2
votes
2answers
544 views

Modify data as part of an alembic upgrade

I would like to modify some database data as part of an alembic upgrade. I thought I could just add any code in the upgrade of my migration, but the following fails: def upgrade(): ### commands ...
1
vote
0answers
13 views

How do I get alembic to emit custom DDL on after_create?

I've got a couple of custom DDL statements that I want to run after create table: update_function = DDL(""" ...
0
votes
0answers
10 views

Alembic : How to add unique constraint to existing column

I have a table 'test' having a column 'Name' with no constraints. I need to Alter this column by giving it 'unique' constraint. How should I do it? Should I use op.alter_column( '???' ) or ...
0
votes
2answers
145 views

Relative importing python module from a subfolder from a different subfolder

I'm trying to use alembic which is an sqlalchemy tool in python. You type a command and it generates a folder "alembic" with py files inside. The py file inside, needs to link to my application in a ...
2
votes
0answers
51 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 # ...
0
votes
0answers
14 views

Alembic error handling best practices [closed]

Are there any best practices or recommendation how to implement error handling for the alembic database migrations for mysql?
2
votes
3answers
68 views

Alembic: alembic revision says Import Error

I am trying to integrate my Flask project with Alembic My application structure looks like project/ configuration/ __init__.py dev.py ...
0
votes
1answer
87 views

sqlalchemy: alembic bulk insert fails: 'str' object has no attribute '_autoincrement_column'

My model looks like class Category(UserMixin, db.Model): __tablename__ = 'categories' uuid = Column('uuid', GUID(), default=uuid.uuid4, primary_key=True, unique=True) ...
2
votes
1answer
72 views

python: How can I test my database model using in-memory db?

I am developing a project in Flask and using SQLAlchemy as ORM I have a User model as class User(UserMixin, db.Model): __tablename__ = 'users' # noinspection PyShadowingBuiltins uuid = ...
1
vote
1answer
59 views

Alembic: How to migrate custom type in a model?

My User model is class User(UserMixin, db.Model): __tablename__ = 'users' # noinspection PyShadowingBuiltins uuid = Column('uuid', GUID(), default=uuid.uuid4, primary_key=True, ...
1
vote
1answer
137 views

Alembic --autogenerate producing empty migration

I am trying to use Alembic for the first time and want to use --autogenerate feature described here My project structure looks like project/ configuration/ __init__.py ...
1
vote
1answer
114 views

sqlalchemy.exc.ArgumentError: Can't load plugin: sqlalchemy.dialects:driver

I am trying to run alembic migration and when I run alembic revision --autogenerate -m "Added initial tables" It fails saying sqlalchemy.exc.ArgumentError: Can't load plugin: ...
0
votes
1answer
67 views

alembic and getting the last inserted value

I'm using alembic to manage my database structure. After adding a table using id as Integer and primary key the id column will be an autoincrement-column. How do I query the data in the upgrade ...
1
vote
1answer
262 views

Integrating Alembic with SQLAlchemy

I'm looking at a way to integrate Alembic with SQLAlchemy. What I need is a way so that Alembic detects any changes I make in models.py automatically and updates it in the MySQL database when I run ...
1
vote
1answer
233 views

Adding primary key to existing MySQL table in alembic

I am trying to add an 'id' primary key column to an already existing MySQL table using alembic. I tried the following... op.add_column('mytable', sa.Column('id', sa.Integer(), nullable=False)) ...
1
vote
1answer
113 views

Altering an Enum field using Alembic

How can I add an element to an Enum field in an alembic migration? This SO question explains the direct process, but I'm not quite sure how best to translate that using alembic. This is what I have: ...
0
votes
1answer
130 views

Detect changes to models.py using Alembic with Flask-SQLAlchemy in Flask Application

I'm trying to use Alembic with Flask-SQLAlchemy and Flask. Here is my application directory structure /myapp app.py /module1 __init__.py views.py /module2 ...
0
votes
1answer
68 views

alembic: use subquery for update statement in migration

I'm using alembic to manage my database migrations. In my current migration I need also to populate a column based on a SELECT statement (basically copying a column from a different table). With ...
1
vote
0answers
53 views

Dynamic Python RPC [closed]

TLDR: Dynamic RPC mechanisms in Python? I am working on a Python project using SQLAlchemy and Alembic that is then wrapped in Protocol Buffers for CLI interaction. The tool's selling point (at least ...
1
vote
2answers
91 views

Should I keep DB migration scripts generated via alembic under version control

I am using SQLAlchemy and PostgreSQL on my live site. For database migrations, I am using alembic. I have some questions regarding the best strategy to do this . Do I need to keep my DB migration ...
0
votes
2answers
171 views

How to turn on 'PRAGMA foreign_keys = ON' in sqlalchemy migration script or configuration file for sqlite?

In a suitable sqlite version, we can enforce foreign key constraint by 'PRAGMA foreign_keys = ON'. However user can not log in a database every time when making a connection. So I wonder how can we ...
0
votes
1answer
201 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 ...
4
votes
1answer
277 views

How should I run alembic migrations on Heroku?

I'm trying to run a fairly simple Flask + SQLAlchemy site on Heroku, but I'm not sure how I should run my migrations to set up my DB. When I run heroku run alembic upgrade head, I get the following ...
0
votes
1answer
74 views

How do I set an initial value for a primary key set to automatically increment using SQLAlchemy/Alembic?

In MySQL, we can use AUTO_INCREMENT = ? to automatically insert a primary key value. How do we do it in SQLAlchemy/Alembic? Thanks very much!
1
vote
0answers
78 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 ...
2
votes
1answer
190 views

Use different .ini file for alembic.ini

I'm attempting to configure SQLAlchemy Alembic for my Pyramid project and I want to use my developement.ini (or production.ini) for the configuration settings for Alembic. Is it possible to specify ...
2
votes
1answer
424 views

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
947 views

Request a simple alembic working example for Auto Generating Migrations

I installed alembic 0.3.4, sqlalchemy, SQLite version 3.7.4, and upgraded SQLAlchemy 0.6.4 to SQLAlchemy 0.7 or greater from my ubuntu. I followed the instruction: ...
1
vote
1answer
923 views

Auto Generating Migrations using alembic

In the tutorial: http://alembic.readthedocs.org/en/latest/tutorial.html I tested Auto Generating Migrations function by below command: alembic revision --autogenerate -m "Added account table" and ...