我正在尝试使用带有瓶子的 peewee 在 MySQL 数据库的某些列中允许空值。看看这里的文档,我认为这很容易。我设置了一个这样的类:
class TestClass(MySQLModel):
Title = pw.CharField(null = True)
创建表并尝试插入一个空值,如下所示:
myDB.connect()
x = TestClass.create(Title = None)
x.save()
只是为了它挂断我并说“ _mysql_exceptions.OperationalError: (1048, "Column 'Title' cannot be null")
”。难道我做错了什么?