I have a supabase trigger running:
trigger: db.onInserted({
schema: 'public',
table: 'ocr_documents'
}),
However, I've noticed that the jobs aren't triggered when inserting multiple rows at once. If I insert a single row it works fine, the trigger goes through. This is in both production and staging environments. Any ideas?