This commit is contained in:
Kar
2026-03-11 21:18:24 +05:30
commit 26e70981ee
7 changed files with 695 additions and 0 deletions

11
add_removed_column.sql Normal file
View File

@@ -0,0 +1,11 @@
-- Add removed column to domain_root table
ALTER TABLE domain_root
ADD COLUMN removed BOOLEAN DEFAULT FALSE;
-- Add removed column to domain_suffix table
ALTER TABLE domain_suffix
ADD COLUMN removed BOOLEAN DEFAULT FALSE;
-- Add index for removed column for better query performance
ALTER TABLE domain_root ADD INDEX idx_removed (removed);
ALTER TABLE domain_suffix ADD INDEX idx_removed (removed);