姜戈;如何更改 django.contrib.sessions 使用的表名?

2022-01-16 00:00:00 python django frameworks

问题描述

如何更改 Meta 类中的信息,即 'django.contrib.sessions.models' ,以便我的项目可以有一些统一的表名,但应用程序的功能是相同的?

How can i change the info in the Meta class in i.e 'django.contrib.sessions.models' , so that my project can have somewhat uniform table names, but so that the functionality of the app is the same?

谢谢


解决方案

你可以试试这个:

from django.contrib.sessions.models import Session
Session.Meta.db_table = 'my_session'

已编辑上述解决方案引发错误,但以下工作:

EDITED The above solution throws an error but the following works:

from django.contrib.sessions.models import Session
Session._meta.db_table = "my_session"

相关文章