How are you managing schema migrations when connecting static frontends to serverless databases?
I’m building a project with a purely static frontend that hits a serverless SQL database via edge functions. It works great for scaling, but I’m hitting a wall when it comes to CI/CD workflows and database schema migrations.
Since the frontend deploys are atomic and instant, a breaking database change can easily tear down live sessions if a user is on an older version of the static UI that expects the old schema. Are you guys writing backward-compatible migrations for every single change or is there a tool that syncs database schema updates perfectly with the edge deployment lifecycle?