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 functionali
You can try this:
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"