What are the most common tooling and best practices to deploy SQL changes on AWS RDS databases?
Now we are considering a temporary flyway docker container running in our ECS, but it would be great if any of the managed AWS services had a solution for it.
Upto now, there aren't any manage services for sql migrations since its mostly unique for the database instance type(mysql, oracle & etc).
Generally if you go for code first approach, migrations are kept in the forms of changes, in a managed schema in code, while for database first approach, sql DML scripts are maintained.
Its also good a practice to automatically run these on continuous delivery tool, if any changes are available.