gpt4 book ai didi

Python peewee 外键约束不正确地形成

转载 作者:行者123 更新时间:2023-11-29 02:12:13 24 4
gpt4 key购买 nike


我目前正在开发一个使用 peewee 连接到 MySQLDatabase 的 python 项目。
如果我想使用创建一个表database.create_tables(tables=[])(create_table 不起作用)
我从记录器中收到以下错误消息:

ERROR session[5924]: (1005, 'Can't create table example_database.example_table (errno: 150 "Foreign key constraint is incorrectly formed")')

example_table 指定为:

class Example_Table(BaseModel):
id = PrimaryKeyField()
example_table2 = ForeignKeyField(Modul)
class Meta:
db_table = 'Example_Table'

BaseModel定义如下:

class BaseModel(Model):
class Meta:
database = database

数据库是我的 MySQLDatabase 对象。
问题是,为什么外键约束不起作用,为什么表都保存为小写,但我用大写定义它们

如果我再次运行该程序,它会创建表但会给我一个重复的 key_name 错误

版本:peewee==3.0.17

最佳答案

因此,在 peewee 3.x 中,您使用 table_name 而不是 db_table 来显式声明非默认表名。

我在本地运行了一些示例代码来进行测试:

class User(Model):
username = TextField()
class Meta:
database = db
table_name = 'UserTbl'

class Note(Model):
user = ForeignKeyField(User, backref='notes')
content = TextField()
class Meta:
database = db
table_name = 'NoteTbl'

我创建了表并检查了 SQL 输出,这对我来说是正确的:

CREATE TABLE IF NOT EXISTS `UserTbl` (`id` INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY, `username` TEXT NOT NULL)
CREATE TABLE IF NOT EXISTS `NoteTbl` (`id` INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY, `user_id` INTEGER NOT NULL, `content` TEXT NOT NULL, FOREIGN KEY (`user_id`) REFERENCES `UserTbl` (`id`))
CREATE INDEX `note_user_id` ON `NoteTbl` (`user_id`)

希望对您有所帮助。

关于Python peewee 外键约束不正确地形成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48767396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com