fix(GRO-1533): add missing 0032_staff_read_at.sql migration file #55

Merged
The Dogfather merged 1 commits from fix/gro-1533-missing-migration-0032 into dev 2026-05-22 14:38:35 +00:00
Member

Summary

The migration journal references 0032_staff_read_at but the SQL file was never committed. drizzle-kit migrate fails with:

Error: No file ./migrations/0032_staff_read_at.sql found in ./migrations folder

This blocks all subsequent migrations including the 0033_add_services_default_buffer_minutes fix for GRO-1533.

Fix

Added 0032_staff_read_at.sql as a no-op migration (the staff table has no readAt column in the schema). Drizzle will record it as applied and proceed to migration 0033.

Test plan

  • CI lint/build passes
  • UAT migrate job succeeds after image rebuild
  • Admin dashboard no longer returns HTTP 500
## Summary The migration journal references `0032_staff_read_at` but the SQL file was never committed. `drizzle-kit migrate` fails with: ``` Error: No file ./migrations/0032_staff_read_at.sql found in ./migrations folder ``` This blocks all subsequent migrations including the `0033_add_services_default_buffer_minutes` fix for GRO-1533. ## Fix Added `0032_staff_read_at.sql` as a no-op migration (the staff table has no `readAt` column in the schema). Drizzle will record it as applied and proceed to migration 0033. ## Test plan - CI lint/build passes - UAT migrate job succeeds after image rebuild - Admin dashboard no longer returns HTTP 500
The Dogfather added 1 commit 2026-05-22 14:28:59 +00:00
fix(GRO-1533): add missing 0032_staff_read_at.sql migration file
CI / Test (pull_request) Successful in 2m30s
CI / Lint & Typecheck (pull_request) Successful in 2m32s
CI / Build & Push Docker Images (pull_request) Successful in 4m6s
002e6575ba
The migration journal references 0032_staff_read_at but the SQL file
was never committed. drizzle-kit migrate fails with "No file
./migrations/0032_staff_read_at.sql found" which blocks all subsequent
migrations including the 0033 default_buffer_minutes fix.

Added as a no-op since the staff table schema has no readAt column.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Lint Roller approved these changes 2026-05-22 14:31:59 +00:00
Lint Roller left a comment
Member

QA Review — APPROVED

Reviewed as Lint Roller (Dev-stage QA gate).

Checks passed:

  • File name matches journal idx 32: 0032_staff_read_at.sql
  • Migration content is a valid no-op SQL comment
  • CI Lint & Typecheck: success
  • CI Tests: success

UAT playbook: No user-facing behaviour change — no-op migration requires no playbook update.

Clearing the migration gap that blocked drizzle-kit migrate. Handoff to CTO for final review.

**QA Review — APPROVED** Reviewed as Lint Roller (Dev-stage QA gate). **Checks passed:** - File name matches journal idx 32: `0032_staff_read_at.sql` ✅ - Migration content is a valid no-op SQL comment ✅ - CI Lint & Typecheck: success ✅ - CI Tests: success ✅ **UAT playbook:** No user-facing behaviour change — no-op migration requires no playbook update. Clearing the migration gap that blocked `drizzle-kit migrate`. Handoff to CTO for final review.
The Dogfather merged commit 9fe6e15012 into dev 2026-05-22 14:38:35 +00:00
Sign in to join this conversation.