Create and apply PostgreSQL schema migrations for this project. Use when adding or changing tables, columns, constraints, indexes, or query patterns that require schema updates and sqlc regeneration.
Create safe, append-only schema changes with regeneration.
migrations/*.up.sql / migrations/*.down.sqlschema.sql (generated)internal/*/queries.sql + internal/store/*.go (generated via sqlc).agents/skills/db-migration/scripts/new-migration.sh <name>up.sql with explicit indexes for new query patterns.down.sql that safely reverses up.sql.make migratemake schema-dumpmake generate-sqlcmake generate.progress.md with migration status and follow-ups.LIMIT/OFFSET) and indexed.Commit migration files together with generated artifacts (schema.sql, sqlc output).