bemade-addons/caldav_sync/data/neutralize.sql

9 lines
279 B
MySQL
Raw Normal View History

-- Neutralize CalDAV synchronization by setting credentials to NULL
UPDATE res_users
SET caldav_calendar_url = NULL,
caldav_username = NULL,
caldav_password = NULL
WHERE caldav_calendar_url IS NOT NULL
OR caldav_username IS NOT NULL
OR caldav_password IS NOT NULL;