Add phone field to color request form and database

This commit is contained in:
DaX
2025-08-29 12:41:34 +02:00
parent 9f2dade0e3
commit 6d534352b2
4 changed files with 40 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
-- Migration: Add phone field to color_requests table
-- Allows users to provide phone number for contact
ALTER TABLE color_requests
ADD COLUMN IF NOT EXISTS user_phone VARCHAR(50);
-- Add comment to describe the new column
COMMENT ON COLUMN color_requests.user_phone IS 'User phone number for contact (optional)';