16 lines
531 B
MySQL
16 lines
531 B
MySQL
|
|
-- Migration: Add use_for_verification field to cloudflare_accounts table
|
||
|
|
-- Date: 2026-01-12
|
||
|
|
|
||
|
|
-- Add use_for_verification column
|
||
|
|
ALTER TABLE cloudflare_accounts
|
||
|
|
ADD COLUMN IF NOT EXISTS use_for_verification BOOLEAN DEFAULT TRUE;
|
||
|
|
|
||
|
|
-- Update existing records to TRUE (default behavior)
|
||
|
|
UPDATE cloudflare_accounts
|
||
|
|
SET use_for_verification = TRUE
|
||
|
|
WHERE use_for_verification IS NULL;
|
||
|
|
|
||
|
|
-- Add comment
|
||
|
|
COMMENT ON COLUMN cloudflare_accounts.use_for_verification IS 'Whether this account can be used for customer domain verification';
|
||
|
|
|