-- 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);