2016-05-27 17 views
2

model.py看起来是这样的:蒸馏器降级似乎并不了解元数据

revision = '6f9e2d360276' 
down_revision = None 
branch_labels = None 
depends_on = None 

from alembic import op 
import sqlalchemy as sa 


def upgrade(): 
    op.add_column('team', sa.Column('is_first_time_news', sa.Boolean, default=False)) 


def downgrade(): 
    op.drop_column('team', sa.Column('is_first_time_news', sa.Boolean)) 

alembic upgrade head的伟大工程:

import datetime 

from sqlalchemy.ext.declarative import declarative_base 
from sqlalchemy import Column, Integer, String, Numeric, ForeignKey, DateTime, Boolean 
from sqlalchemy import create_engine 
from sqlalchemy.orm import sessionmaker, relationship 

from configs import config_base as config 
Base = declarative_base() 


class User(Base): 
    __tablename__ = 'user' 

    id = Column(String, unique=True, primary_key=True) 
    name = Column(String(100), nullable=False) 
    team_id = Column(String, ForeignKey('team.id')) 
    last_modified_on = Column(DateTime, default=datetime.datetime.utcnow()) 
    team = relationship('Team', back_populates='members') 


class Team(Base): 
    __tablename__ = 'team' 

    id = Column(String, unique=True, primary_key=True) 
    name = Column(String, nullable=False) 
    bot_access_token = Column(String(100), nullable=False) 
    bot_user_id = Column(String(100), nullable=False) 
    last_modified_on = Column(DateTime, default=datetime.datetime.utcnow()) 
    is_active = Column(Boolean, default=True) 
    members = relationship('User', back_populates='team') 
    is_first_time_news = Column(Boolean, default=True) 

engine = create_engine(config.SQLALCHEMY_DATABASE_URI) 
Base.metadata.create_all(engine) 
Session = sessionmaker(bind=engine) 

我只是通过这种蒸馏器迁移增加is_first_time_news

但是当我做了我alembic downgrade -1得到一个奇怪的例外:

AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute '_columns'

回答

0

你使用SQLite? Sqlite不允许你从 方案中删除一列。当我试图降级我测试的本地sqlite数据库时,我遇到了类似的问题。

SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows the user to rename a table or to add a new column to an existing table.

https://www.sqlite.org/lang_altertable.html

+0

不,实际上它Postgres的。 – Houman