sqlalchemy.exc.IntegrityError: (pymysql.err.IntegrityError) (1452, 'Cannot add or update a child row: a foreign key constraint fails (`test1`.`#sql-13a8_a9`, CONSTRAINT `arti
cle_ibfk_2` FOREIGN KEY (`article_id`) REFERENCES `article_type` (`id`))')
[SQL: ALTER TABLE article ADD FOREIGN KEY(article_id) REFERENCES article_type (id)]
(Background on this error at: http://sqlalche.me/e/13/gkpj)
报错的原因如下:
1、需要引用外键的数据表中存在数据
2、在设计表格的属性的时候设置了不允许为空
因此存在冲突,创建表格失败。
这时可以将引用外键的数据表中的数据delete 掉就可以运行成功。(将数据表中的数据全部删掉的命令)
delete from tablename;
但是有可能又会报这样的错误
Target database is not up to date.
这是因为我们上一次migrate后没有上传的原因
我们只需要将migrate生成的版本文件删掉(要注意看看数据表alembic_version中的版本号是不是已经被同步,如果被同步,就进行降级处理python app.py db downgrade
),然后重新运行python app.py db migrate
—> python app.py db upgrade
这时候时候数据表即可生成