Replace the GORM auto-migration with Goose. The latter uses hand-written SQL files to migrate the database with understandable, explicit queries.
Convert the database interface from the stdlib `database/sql` package to the GORM object relational mapper. GORM is also used by the Manager, and thus with this change both Worker and Manager have a uniform way of accessing their databases.