mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 10:51:13 -05:00
9 lines
356 B
SQL
9 lines
356 B
SQL
-- Add CAPTCHA bypass setting to admin_settings
|
|
INSERT INTO public.admin_settings (setting_key, setting_value, category, description)
|
|
VALUES (
|
|
'auth.captcha_bypass_enabled',
|
|
'false',
|
|
'auth',
|
|
'Allow CAPTCHA bypass for authentication (development only - requires VITE_ALLOW_CAPTCHA_BYPASS=true in environment)'
|
|
)
|
|
ON CONFLICT (setting_key) DO NOTHING; |