Initial Commit

This commit is contained in:
Hosteroid
2025-10-08 14:23:07 +03:00
commit b3b3ac66ff
78 changed files with 14248 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- Update tld_import_logs table to support TLD list imports
-- Add version field and update import_type enum
-- Add version column (will fail gracefully if column already exists)
ALTER TABLE tld_import_logs
ADD COLUMN version VARCHAR(50) NULL AFTER iana_publication_date;
-- Update import_type enum to include 'tld_list'
-- Note: This will fail gracefully if the enum already includes 'tld_list'
ALTER TABLE tld_import_logs
MODIFY COLUMN import_type ENUM('tld_list', 'rdap', 'whois', 'manual') NOT NULL;