You can try the following:
from django.contrib.sessions.models import Session
Session.Meta.db_table = 'my_session'
EDITED
The above solution causes an error, but the following works:
from django.contrib.sessions.models import Session
Session._meta.db_table = "my_session"
source
share