我想使用flask migrate来建立对状态的约束。状态尚不存在。
我的模型包括这一行:
preg_match_all('/%22(?:\\\\.|(?!%22).)*%22|\S+/', $text, $matches);
除了创建状态之外,我还想在状态上添加以下约束:
status = db.Column(db.String(120), unique=False)
答案 0 :(得分:1)
您可以在迁移脚本中编写SQL。请参阅http://alembic.zzzcomputing.com/en/latest/ops.html#alembic.operations.Operations.execute。
附注:Flask-Migrate只是Alembic的一个包装,使其与Flask友好相处。所以这真是一个关于Alembic的问题。