Fix: Correct table name in migration (cloudflare_accounts)
This commit is contained in:
parent
8f64b61d1d
commit
e149c56f76
|
|
@ -1,15 +1,15 @@
|
|||
-- Migration: Add use_for_verification field to cloudflare_account table
|
||||
-- Migration: Add use_for_verification field to cloudflare_accounts table
|
||||
-- Date: 2026-01-12
|
||||
|
||||
-- Add use_for_verification column
|
||||
ALTER TABLE cloudflare_account
|
||||
ALTER TABLE cloudflare_accounts
|
||||
ADD COLUMN IF NOT EXISTS use_for_verification BOOLEAN DEFAULT TRUE;
|
||||
|
||||
-- Update existing records to TRUE (default behavior)
|
||||
UPDATE cloudflare_account
|
||||
SET use_for_verification = TRUE
|
||||
UPDATE cloudflare_accounts
|
||||
SET use_for_verification = TRUE
|
||||
WHERE use_for_verification IS NULL;
|
||||
|
||||
-- Add comment
|
||||
COMMENT ON COLUMN cloudflare_account.use_for_verification IS 'Whether this account can be used for customer domain verification';
|
||||
COMMENT ON COLUMN cloudflare_accounts.use_for_verification IS 'Whether this account can be used for customer domain verification';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue