38808-vm/db/migrations/014_add_display_name_to_attachments.sql
2026-03-01 03:37:35 +00:00

5 lines
224 B
SQL

-- Migration: Add display_name to attachments table
-- This column is needed for the split_mailbox migration (015) to work correctly
ALTER TABLE attachments ADD COLUMN IF NOT EXISTS display_name VARCHAR(255) AFTER mail_id;