forked from zestedesavoir/zds-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
executable file
·47 lines (32 loc) · 1.5 KB
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import os
import sys
import signal
def patch_create_suffix(original):
"""
Patch mysql creation policy to handle the "utf8mb4" facility. This appears tricky but it's necessary
due to the conception of "extended utf-8" in mysql. If we do not patch, the mysql backend cannot index
``VARCHAR(255)`` fields !
see <http://bd808.com/blog/2017/04/17/making-django-migrations-that-work-with-mysql-55-and-utf8mb4/>
for explanations
:param original: the original function we are patching
:return: the patched function
"""
def patch(self):
return original(self) + ' ROW_FORMAT=DYNAMIC'
return patch
def sighandler(signum, frame):
sys.exit(1)
if __name__ == '__main__':
# Monkey-patch Django's broken signal handling
# http://blog.lotech.org/fix-djangos-runserver-when-run-under-docker-or-pycharm.html
signal.signal(signal.SIGTERM, sighandler)
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'zds.settings.dev')
if len(sys.argv) > 1 and sys.argv[1] in ['migrate', 'test']:
from django.db.backends.mysql.creation import BaseDatabaseCreation
BaseDatabaseCreation.sql_table_creation_suffix = \
patch_create_suffix(BaseDatabaseCreation.sql_table_creation_suffix)
from django.db.backends.mysql.schema import DatabaseSchemaEditor
DatabaseSchemaEditor.sql_create_table += ' ROW_FORMAT=DYNAMIC'
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)