我使用peewee
使我们的项目易于操作数据库。
实际上,我最近和peewee有问题。
class User(Model):
id = IntegerField()
name = CharField()
Class Meta:
database = db # db connection
db_table = 'user_00' # Here is the problem
我们有很多用户,我必须将表拆分为
user_00,user_01,user_0...user_09.
如果我使用字段db_table
,我就无法做到这一点,而且我也不想创建更多模型。
BTW,我知道名为db_table_func
的函数,但文档中没有更多用法。
如何在项目中使用拆分表?
谢谢,我真的需要帮助!