使用Flask-Migration向SQLite3表添加UniqueKey约束失败,并出现IntrgrityError

时间:2019-02-13 15:00:40

标签: sqlite flask alembic flask-migrate

因此,我使用sqlite作为测试数据库,并在models.py中拥有以下类

class User(UserMixin, db.Model):
    __tablename__ = 'users'
    id = db.Column(db.Integer, primary_key=True, index=True)
    username = db.Column(db.String(40), unique=True, index=True)
    password_hash = db.Column(db.String(256))
    alternate_id = db.Column(db.String(100))
    posts = db.relationship('Posts', backref='author', lazy=True)

    def get_id(self):
        return str(self.alternate_id)

    def __init__(self, username, password):
        self.username = username
        self.password_hash = generate_password_hash(password)
        self.alternate_id = my_serializer.dumps(
            self.username + self.password_hash)

    def verify_password(self, password):
        if check_password_hash(self.password_hash, password):
            return "True"


class Posts(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    title = db.Column(db.String(100), nullable=False, unique=True)
    description = db.Column(db.String(1500))
    author_id = db.Column(db.Integer, db.ForeignKey('users.id'))

    def __init__(self, title, description, author_id):
        self.title = title
        self.description = description
        self.author_id = author_id

我在unique类的title列中添加了Posts键约束,然后尝试使用Flask-Migrate更新架构。

最初,我遇到No support for ALTER of constraints in SQLite dialect错误,因为sqlite3不支持alembic。因此,我查看了Alembic文档,发现实际上可以使用batch模式迁移进行此类迁移。因此,我如下更新了迁移脚本。

def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    with op.batch_alter_table("posts") as batch_op:
        batch_op.create_unique_constraint('unique_title', ['title'])
    # ### end Alembic commands ###

现在,当我尝试运行flask db upgrade时,出现以下错误

sqlalchemy.exc.IntegrityError: (sqlite3.IntegrityError) UNIQUE constraint failed: _alembic_tmp_posts.title [SQL: 'INSERT INTO
_alembic_tmp_posts (id, title, description, author_id) SELECT posts.id, posts.title, posts.description, posts.author_id \nFROM posts'] (Background on this error at: http://sqlalche.me/e/gkpj`)

我无法理解为什么会引发IntegrityError异常,因为如果我查看insert语句,则列数是相同的。

它与受authors_id约束的foreignkey列有关吗?

1 个答案:

答案 0 :(得分:0)

我在其上添加了unique约束的数据库表列中有重复的数据,这就是我遇到完整性错误的原因,我很惊讶为什么没有更早地注意到这一点。

因此,一旦我删除了重复的行之一,数据库升级就成功了。