* chore: remove the effectively unused DATABASE_TEST_OPTIONS setting * fix: simplify default settings_local so that db-include-fix.py is not needed in CI * fix: simplify migrations in db-pg-migrate.sh
15 lines
375 B
Python
15 lines
375 B
Python
DATABASES = {
|
|
'default': {
|
|
'HOST': 'db',
|
|
'PORT': 3306,
|
|
'NAME': 'ietf_utf8',
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'USER': 'django',
|
|
'PASSWORD': 'RkTkDPFnKpko',
|
|
'OPTIONS': {
|
|
'sql_mode': 'STRICT_TRANS_TABLES',
|
|
'init_command': 'SET storage_engine=InnoDB; SET names "utf8"',
|
|
},
|
|
},
|
|
}
|