package.json scripts migrate:run, migrate:status, migrate:rollback, migrate:rollback:count, migrate:rollback:to and migrate:reset all curl http://localhost:3000/migrations/....
No controller in src/ exposes those endpoints (no MigrationController / migrations/run route exists), so every script fails against a running app.
Fix: either remove the scripts, or point them at the TypeORM CLI like the migration:* scripts do (npx typeorm-ts-node-commonjs migration:run -d src/config/datasource.ts).
package.jsonscriptsmigrate:run,migrate:status,migrate:rollback,migrate:rollback:count,migrate:rollback:toandmigrate:resetallcurlhttp://localhost:3000/migrations/....No controller in
src/exposes those endpoints (noMigrationController/migrations/runroute exists), so every script fails against a running app.Fix: either remove the scripts, or point them at the TypeORM CLI like the
migration:*scripts do (npx typeorm-ts-node-commonjs migration:run -d src/config/datasource.ts).