Add INSERT to old DB for subscriptions and users

This commit is contained in:
Skia
2016-08-29 02:19:29 +02:00
parent 2b4a623e4a
commit dfb13c37f2
4 changed files with 29 additions and 6 deletions

View File

@ -17,6 +17,7 @@ from django.utils.translation import ugettext_lazy as _
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
os.environ['HTTPS'] = "on"
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/

View File

@ -12,5 +12,6 @@ import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sith.settings")
os.environ['HTTPS'] = "on"
application = get_wsgi_application()