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,13 @@
-- Add WHOIS-related columns to domains table
-- Note: These statements may show warnings if columns already exist, but won't fail
-- Add registrar_url column
ALTER TABLE domains ADD COLUMN registrar_url VARCHAR(255) AFTER registrar;
-- Add updated_date column
ALTER TABLE domains ADD COLUMN updated_date DATE AFTER expiration_date;
-- Add abuse_email column
ALTER TABLE domains ADD COLUMN abuse_email VARCHAR(255) AFTER updated_date;