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:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user