Files
leonwww/dns/migrations/003_add_ns_records.sql
2025-11-08 15:06:30 +08:00

10 lines
569 B
SQL

-- Re-add NS record support and extend record types
ALTER TABLE dns_records DROP CONSTRAINT dns_records_record_type_check;
ALTER TABLE dns_records ADD CONSTRAINT dns_records_record_type_check
CHECK (record_type IN ('A', 'AAAA', 'CNAME', 'TXT', 'NS', 'MX'));
-- Add index for efficient NS record lookups during delegation
CREATE INDEX idx_dns_records_ns_lookup ON dns_records(record_type, name) WHERE record_type = 'NS';
-- Add index for subdomain resolution optimization
CREATE INDEX idx_dns_records_subdomain_lookup ON dns_records(domain_id, name, record_type);