The Django Sample App instructions say:
"Run python manage.py migrate to perform the initial database migration. You will only need to run this the very first time you deploy your app"
That's confusing; wouldn't you have to run migrate every time you change the schema? And is there no way to automate that, or do you have to manually use the console for each deployment with a migration? Adding to that: you need new code to run the migration, but you also have to make sure the new code doesn't serve traffic until the migration is complete...
Given all of that, it isn't clear how you'd
really
use App Platform to deploy a Django app in a CI/CD pipeline.