Get rid of mysql strict trans mode warnings

This commit is contained in:
Régis Behmo 2019-10-07 17:11:18 +02:00
parent f6e315a013
commit 9b6ddff29f
2 changed files with 4 additions and 1 deletions

View File

@ -1 +1 @@
__version__ = "0.1.2"
__version__ = "0.1.3"

View File

@ -8,6 +8,9 @@ DATABASES = {
"NAME": "{{ XQUEUE_MYSQL_DATABASE }}",
"USER": "{{ XQUEUE_MYSQL_USERNAME }}",
"PASSWORD": "{{ XQUEUE_MYSQL_PASSWORD }}",
"OPTIONS": {
"init_command": "SET sql_mode='STRICT_TRANS_TABLES'",
},
}
}