We'll generally want to create a migration from the command line and then edit it in PyCharm. Is there a way to specify "no editor" in yoyo.ini?
You can set
batch_mode=true
in yoyo.ini to get this behaviour.This will affect all commands though. If you only want this when creating new migrations then running
yoyo new --batch
should do the trick.