Add notifications table migration to run-all.js

The migration file existed but was never registered in the POSTGRES_MIGRATIONS
array, so it never ran on production. The missing table caused 500 errors on
GET /api/notifications/count.
This commit is contained in:
Jordan Ramos
2026-06-09 12:43:27 -06:00
parent f8b420f4e4
commit 29d8ecb9dd
2 changed files with 13 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ const POSTGRES_MIGRATIONS = [
'add_archer_templates_table.js',
'add_queue_remediation_notes_table.js',
'add_remediate_workflow_type.js',
'add_notifications_table.js',
];
async function runAll() {