added merge migration

This commit is contained in:
Anatoly 2020-01-30 16:19:15 +03:00
parent 13cc40c19c
commit 7541909390
2 changed files with 22 additions and 6 deletions

View File

@ -0,0 +1,14 @@
# Generated by Django 2.2.7 on 2020-01-30 13:18
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('establishment', '0087_western_field'),
('establishment', '0087_auto_20200130_1312'),
]
operations = [
]

View File

@ -1,6 +1,8 @@
"""Local settings."""
from .base import *
import sys
from .base import *
# from .amazon_s3 import *
ALLOWED_HOSTS = ['*', ]
@ -84,11 +86,11 @@ LOGGING = {
'py.warnings': {
'handlers': ['console'],
},
# 'django.db.backends': {
# 'handlers': ['console', ],
# 'level': 'DEBUG',
# 'propagate': False,
# },
'django.db.backends': {
'handlers': ['console', ],
'level': 'DEBUG',
'propagate': False,
},
}
}