- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>berli_globalsearch_settings</name>
|
|
<sql><![CDATA[CREATE TABLE IF NOT EXISTS `berli_globalsearch_settings` (
|
|
`gstabid` int(19) NOT NULL,
|
|
`displayfield` varchar(150) NOT NULL,
|
|
`searchcolumn` varchar(150) NOT NULL,
|
|
`turn_off` int(1) NOT NULL DEFAULT '1',
|
|
`sequence` int(19) NOT NULL,
|
|
`searchall` tinyint(1) NOT NULL DEFAULT '1',
|
|
PRIMARY KEY (`gstabid`),
|
|
CONSTRAINT `fk_1_berl_globalsearch_settings` FOREIGN KEY (`gstabid`) REFERENCES `vtiger_tab` (`tabid`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_general_ci;]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>berli_globalsearch_data</name>
|
|
<sql><![CDATA[CREATE TABLE IF NOT EXISTS `berli_globalsearch_data` (
|
|
`gscrmid` int(19) NOT NULL,
|
|
`searchlabel` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`gscrmid`),
|
|
CONSTRAINT `fk_1_berli_globalsearch_data` FOREIGN KEY (`gscrmid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_general_ci;]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|