mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:51:12 -05:00
4 lines
199 B
SQL
4 lines
199 B
SQL
-- Make thread_id nullable in contact_submissions table
|
|
-- Contact submissions don't have a thread until an admin replies
|
|
ALTER TABLE public.contact_submissions
|
|
ALTER COLUMN thread_id DROP NOT NULL; |