因此,我使用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
列有关吗?
答案 0 :(得分:0)
我在其上添加了unique
约束的数据库表列中有重复的数据,这就是我遇到完整性错误的原因,我很惊讶为什么没有更早地注意到这一点。
因此,一旦我删除了重复的行之一,数据库升级就成功了。