What is the best way to run a database migration using a sqlite database on fly.io?
Should I place my migration script in my Dockerfile or my fly.toml
For reference, this is my migration script in my package.json
"db:up": "vite-node ./src/lib/server/migrate.ts"
Is there anyway to do a sort of dry run, before fly deploy?