I'm using Django, Python 3.7 and MySql 5.7. I want to set the default charset and collation for all existing and all future tables to
DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
I have already created some migrations,
(venv) localhost:maps davea$ ls web/maps/migrations/
0001_initial.py __init__.py __pycache__
Is there any way I can create such a migration? I'm happy to blow away from database and start from scratch if that's what it takes.