bemade-addons/caldav_sync/data/neutralize.sql

9 lines
279 B
MySQL
Raw Permalink Normal View History

2024-05-23 08:50:09 -04:00
-- Neutralize CalDAV synchronization by setting credentials to NULL
UPDATE res_users
SET caldav_calendar_url = NULL,
2024-05-23 08:50:09 -04:00
caldav_username = NULL,
caldav_password = NULL
WHERE caldav_calendar_url IS NOT NULL
2024-05-23 08:50:09 -04:00
OR caldav_username IS NOT NULL
OR caldav_password IS NOT NULL;