[error] MySQL Strict Mode is not set for database connection 'default'
django 에서 migrate 명령시
MySQL Strict Mode is not set for database connection 'default'
라는 경고가 발생했다. 뭔진 모르지만 꺼림칙하다.
DATABASES = {
'default': {
...
'PORT': '3306',
'OPTIONS': {
'init_command': "SET sql_mode='STRICT_TRANS_TABLES'"
}
}
}
DATABASES 설정의 default 안에 OPTIONS를 추가하면 된다.