init
This commit is contained in:
11
add_removed_column.sql
Normal file
11
add_removed_column.sql
Normal 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);
|
||||
Reference in New Issue
Block a user