I want to run a command for the duration of the lifetime of the website. I don't want to run it more than once.
Let's say I want to run the query:
set names utf8mb4;
Then I would just run something like:
SomeRandomObject.objects.raw('set names utf8mb4;')
Where should I put this? Does it matter what object I run the query on? Is there a better object?