Files
leonwww/dns/migrations/002_remove_ip_requirement.sql
2025-11-08 15:48:53 +08:00

6 lines
306 B
SQL

-- Make IP column optional for domains
ALTER TABLE domains MODIFY COLUMN ip VARCHAR(255) NULL;
-- Update DNS records constraint to only allow A, AAAA, CNAME, TXT
-- MySQL doesn't support DROP CONSTRAINT IF EXISTS
-- MySQL 8.0+ supports CHECK constraints, but we'll use a trigger approach for compatibility