The project uses goose for migrations
# 1. Install goose
go install github.com/pressly/goose/v3/cmd/goose@latest
# 2. Create a new migration
goose create add_some_column sql
# 3. Set the DB_URL inside the Makefile
# 4. Apply migrations
make migrateRunning make migrate will write the current schema into the /data/schema/schema.sql file.