I'm running an Aurora PostgreSQL (Serverless) cluster. After I deploy the infrastructure for the first time, and every time I re-deploy, I want to run database schema migrations (add tables, add columns).
How can I accomplish this?
Lambda is out of the question, as migrations may run for a long time.
Edit: clarified about schema migration
Thanks!