- 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.
46 lines
1.8 KiB
XML
46 lines
1.8 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>vtiger_webforms</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_webforms` (
|
|
`id` int(19) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(100) CHARACTER SET utf8 NOT NULL,
|
|
`publicid` varchar(100) CHARACTER SET utf8 NOT NULL,
|
|
`enabled` int(1) NOT NULL DEFAULT '1',
|
|
`targetmodule` varchar(50) CHARACTER SET utf8 NOT NULL,
|
|
`description` text CHARACTER SET utf8,
|
|
`ownerid` int(19) NOT NULL,
|
|
`returnurl` varchar(250) CHARACTER SET utf8 DEFAULT NULL,
|
|
`captcha` int(1) NOT NULL DEFAULT '0',
|
|
`roundrobin` int(1) NOT NULL DEFAULT '0',
|
|
`roundrobin_userid` varchar(256) CHARACTER SET utf8 DEFAULT NULL,
|
|
`roundrobin_logic` int(11) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `webformname` (`name`),
|
|
UNIQUE KEY `publicid` (`id`),
|
|
KEY `webforms_webforms_id_idx` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_webforms_field</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_webforms_field` (
|
|
`id` int(19) NOT NULL AUTO_INCREMENT,
|
|
`webformid` int(19) NOT NULL,
|
|
`fieldname` varchar(50) CHARACTER SET utf8 NOT NULL,
|
|
`neutralizedfield` varchar(50) CHARACTER SET utf8 NOT NULL,
|
|
`defaultvalue` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
|
|
`required` int(10) NOT NULL DEFAULT '0',
|
|
`sequence` int(10) DEFAULT NULL,
|
|
`hidden` int(10) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `webforms_webforms_field_idx` (`id`),
|
|
KEY `fk_1_vtiger_webforms_field` (`webformid`),
|
|
KEY `fk_2_vtiger_webforms_field` (`fieldname`),
|
|
CONSTRAINT `fk_1_vtiger_webforms_field` FOREIGN KEY (`webformid`) REFERENCES `vtiger_webforms` (`id`) ON DELETE CASCADE,
|
|
CONSTRAINT `fk_2_vtiger_webforms_field` FOREIGN KEY (`fieldname`) REFERENCES `vtiger_field` (`fieldname`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|