- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在两个模型之间建立了多对多关系,User
和 Role
,通过中间表 UserRoleThrough
实现,它有两个 ForeignKeyField
:一个引用 User
,另一个引用 Role
。据我从文档中了解到,ON DELETE通过使用 on_delete
参数初始化 ForeignKeyField
来支持功能。虽然不是很清楚 on_delete
可以取什么值,documentation举个例子,例如“级联”
。这就是说,on_delete='CASCADE'
似乎没有效果,因为尝试从其中一个父表中删除一行会引发错误。
peewee.IntegrityError: FOREIGN KEY constraint failed
使用数据库浏览器检查生成的模式显示外键未使用 ON DELETE 声明。
CREATE TABLE "userrolethrough" (
"id" INTEGER NOT NULL PRIMARY KEY,
"user_id" INTEGER NOT NULL,
"role_id" INTEGER NOT NULL,
FOREIGN KEY ("user_id") REFERENCES "user" ("id"),
FOREIGN KEY ("role_id") REFERENCES "role" ("id")
)
那么我这里做错了什么?如何让 on_delete
工作?这是使用 Python 3.6 和 Peewee 3.0.2 的最小可重现示例。
import peewee
db_proxy = peewee.Proxy()
class BaseModel(peewee.Model):
class Meta:
database = db_proxy
class User(BaseModel):
name = peewee.CharField()
class Role(BaseModel):
name = peewee.CharField()
class UserRoleThrough(BaseModel):
user = peewee.ForeignKeyField(User, on_delete='CASCADE')
role = peewee.ForeignKeyField(Role, on_delete='CASCADE')
if __name__ == '__main__':
db = peewee.SqliteDatabase('test.db')
db.pragma('foreign_keys', 1, permanent=True)
db_proxy.initialize(db)
tables = [
User,
Role,
UserRoleThrough
]
db.create_tables(tables)
isaac = User.create(name='Isaac')
admin = Role.create(name='Admin')
UserRoleThrough.create(user=isaac, role=admin)
User.delete().execute()
最佳答案
这在 3.0.6 中已修复:github.com/coleifer/peewee/blob/master/CHANGELOG.md#306
关于python - on_delete ='CASCADE' 好像没有效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48776346/
在引用此文档pressable docs之后,我将Pressable用于按钮 现在,我想向按钮添加波纹效果,但是它无法正常工作。 Button 如果按钮具有
在 C# 中,我想制作“智能”枚举,这在 Java 中是可能的,其中有更多信息附加到枚举值,而不仅仅是底层 int。我偶然发现了一个创建类(而不是枚举)的方案,如以下简单示例所示: public se
当执行 git stash 时,会创建 2 个提交。一个被 stash ref 引用并且有 2 个父提交。一位 parent 是我们 stash 地点的索引。另一方拥有我们 stash 的实际内容。
我是一名优秀的程序员,十分优秀!