- 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.
64 lines
2.0 KiB
XML
64 lines
2.0 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>vtiger_finreports_settings</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_finreports_settings` (
|
|
`id` Int( 255 ) AUTO_INCREMENT NOT NULL,
|
|
`name` VarChar( 255 ) NOT NULL,
|
|
`value` VarChar( 255 ) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_finreports</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_finreports` (
|
|
`finreportsid` int(19) NOT NULL,
|
|
`name` varchar(255) DEFAULT NULL,
|
|
`finreportsno` varchar(100) DEFAULT NULL,
|
|
`cf_accounts_id` int(19) DEFAULT NULL,
|
|
`cf_vendors_id` int(19) DEFAULT NULL,
|
|
PRIMARY KEY (`finreportsid`),
|
|
KEY `cf_accounts_id_index` (`cf_accounts_id`) USING BTREE,
|
|
KEY `cf_vendors_id_index` (`cf_vendors_id`) USING BTREE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_finreportscf</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_finreportscf` (
|
|
`finreportsid` int(19) NOT NULL,
|
|
`cf_1259` bigint(20) DEFAULT NULL,
|
|
`cf_1261` varchar(10) DEFAULT '',
|
|
`cf_1263` varchar(200) DEFAULT '',
|
|
`cf_1265` decimal(26,8) DEFAULT NULL,
|
|
`cf_1267` decimal(26,8) DEFAULT NULL,
|
|
`cf_1269` varchar(100) DEFAULT '',
|
|
`cf_1271` varchar(200) DEFAULT '',
|
|
`cf_1273` int(3) DEFAULT NULL,
|
|
`cf_1275` varchar(100) DEFAULT '',
|
|
`cf_1277` int(4) DEFAULT NULL,
|
|
`cf_1279` int(3) DEFAULT NULL,
|
|
`cf_1281` varchar(200) DEFAULT '',
|
|
`cf_1283` text,
|
|
`cf_1285` int(3) DEFAULT NULL,
|
|
`cf_1287` varchar(200) DEFAULT '',
|
|
`cf_1289` text,
|
|
`cf_1291` int(3) DEFAULT NULL,
|
|
`cf_1293` text,
|
|
`cf_1295` varchar(3) DEFAULT '0',
|
|
`cf_1297` varchar(3) DEFAULT '0',
|
|
`cf_1299` varchar(10) DEFAULT '',
|
|
`cf_1301` varchar(10) DEFAULT '',
|
|
`cf_1303` varchar(10) DEFAULT '',
|
|
`cf_1305` varchar(10) DEFAULT '',
|
|
`cf_1307` varchar(10) DEFAULT '',
|
|
`cf_1309` varchar(10) DEFAULT '',
|
|
`cf_1311` varchar(10) DEFAULT '',
|
|
`cf_1313` varchar(10) DEFAULT '',
|
|
`cf_1315` varchar(10) DEFAULT '',
|
|
PRIMARY KEY (`finreportsid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|