From 002e6575ba5a40443f9899015f8da7f278a74d2f Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Fri, 22 May 2026 14:28:48 +0000 Subject: [PATCH] fix(GRO-1533): add missing 0032_staff_read_at.sql migration file 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 --- packages/db/migrations/0032_staff_read_at.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 packages/db/migrations/0032_staff_read_at.sql diff --git a/packages/db/migrations/0032_staff_read_at.sql b/packages/db/migrations/0032_staff_read_at.sql new file mode 100644 index 0000000..da55b19 --- /dev/null +++ b/packages/db/migrations/0032_staff_read_at.sql @@ -0,0 +1 @@ +-- no-op: journal entry exists but no schema change was needed