[Answer]-Run db statement before south migrations when running django tests

1👍

i guess you can always make a migration that executes your statement and make all other migrations depend on it (to make sure it runs first)

in production you can run it with --fake

👤second

Leave a comment