- Introduced new endpoints for contact discovery, including scanning, listing, and managing discovered contacts. - Implemented retry logic for handling missing DAV credentials during contact operations. - Added public share functionality for drive API, allowing users to manage public shares, including upload, delete, and rename operations. - Updated Nextcloud configuration to support public share links and improved error handling for public share permissions. - Enhanced logging and validation across contact and drive APIs for better error tracking and user feedback. - Added tests for new contact matching and ranking functionalities to ensure accuracy and reliability.
11 lines
365 B
SQL
11 lines
365 B
SQL
DROP INDEX IF EXISTS idx_contact_discovery_scans_active;
|
|
|
|
ALTER TABLE contact_discovered_profiles DROP COLUMN IF EXISTS detected_in_accounts;
|
|
|
|
ALTER TABLE contact_discovery_scans
|
|
DROP COLUMN IF EXISTS updated_at,
|
|
DROP COLUMN IF EXISTS nc_user_id,
|
|
DROP COLUMN IF EXISTS book_id,
|
|
DROP COLUMN IF EXISTS phase,
|
|
DROP COLUMN IF EXISTS total_messages;
|