- 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.
51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>vtiger_mailmanager_mailrel</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_mailmanager_mailrel` (
|
|
`mailuid` varchar(999) default NULL,
|
|
`crmid` int(11) default NULL,
|
|
`emailid` int(11) default NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_mailmanager_mailrecord</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_mailmanager_mailrecord` (
|
|
`userid` int(11) default NULL,
|
|
`mfrom` varchar(255) default NULL,
|
|
`mto` varchar(255) default NULL,
|
|
`mcc` varchar(500) default NULL,
|
|
`mbcc` varchar(500) default NULL,
|
|
`mdate` varchar(20) default NULL,
|
|
`msubject` varchar(500) default NULL,
|
|
`mbody` text,
|
|
`mcharset` varchar(10) default NULL,
|
|
`misbodyhtml` int(1) default NULL,
|
|
`mplainmessage` int(1) default NULL,
|
|
`mhtmlmessage` int(1) default NULL,
|
|
`muniqueid` varchar(500) default NULL,
|
|
`mbodyparsed` int(1) default NULL,
|
|
`muid` int(11) default NULL,
|
|
`lastsavedtime` int(11) default NULL,
|
|
`folder` varchar(250),
|
|
KEY `userid_lastsavedtime_idx` (`userid`,`lastsavedtime`),
|
|
KEY `userid_muid_idx` (`userid`,`muid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_mailmanager_mailattachments</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_mailmanager_mailattachments` (
|
|
`userid` int(11) default NULL,
|
|
`muid` int(11) default NULL,
|
|
`aname` varchar(100) default NULL,
|
|
`lastsavedtime` int(11) default NULL,
|
|
`attachid` int(19) NOT NULL,
|
|
`path` varchar(200) NOT NULL,
|
|
`cid` varchar(100) default NULL,
|
|
KEY `userid_muid_idx` (`userid`,`muid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|