diff --git a/supabase/migrations/20250818150655_notification_max_length_fix.sql b/supabase/migrations/20250818150655_notification_max_length_fix.sql new file mode 100644 index 0000000..e95d7d3 --- /dev/null +++ b/supabase/migrations/20250818150655_notification_max_length_fix.sql @@ -0,0 +1,2 @@ +-- Increase the body column limit for notifications to support larger email content (up to 128KB) +ALTER TABLE medreport.notifications ALTER COLUMN body TYPE VARCHAR(131072);