postgres
PostgreSQL — the most common pairing with migrations.
migrations adds database schema migration support to your Go service using golang-migrate, with up/down files and version tracking.
Any service with a relational database needs migrations. Schema changes without versioned migrations are risky in production — you lose repeatability, rollback capability, and team coordination. Add migrations alongside postgres or mysql from the start.
Suggests: docker
verikt new my-service --language go --cap postgres,migrations# or add to an existing service:verikt add migrationspostgres
mysql
docker