50 lines
1.1 KiB
XML
Raw Permalink Normal View History

<?xml version='1.0'?>
<module>
<exporttime>2011-12-27 08:34:59</exporttime>
<name>Import</name>
<label>Import</label>
<parent></parent>
<type>extension</type>
<version>1.2</version>
<dependencies>
<vtiger_version>5.3.0</vtiger_version>
<vtiger_max_version>5.*</vtiger_max_version>
</dependencies>
<tables>
<table>
<name>vtiger_import_locks</name>
<sql>
<![CDATA[CREATE TABLE vtiger_import_locks
(vtiger_import_lock_id INT NOT NULL PRIMARY KEY,
userid INT NOT NULL,
tabid INT NOT NULL,
importid INT NOT NULL,
locked_since DATETIME)
ENGINE=InnoDB DEFAULT CHARSET=utf8]]>
</sql>
</table>
<table>
<name>vtiger_import_queue</name>
<sql>
<![CDATA[CREATE TABLE vtiger_import_queue
(importid INT NOT NULL PRIMARY KEY,
userid INT NOT NULL,
tabid INT NOT NULL,
field_mapping TEXT,
default_values TEXT,
merge_type INT,
merge_fields TEXT,
status INT default 0)
ENGINE=InnoDB DEFAULT CHARSET=utf8]]>
</sql>
</table>
</tables>
<crons>
<cron>
<name>Scheduled Import</name>
<handler>cron/modules/Import/ScheduledImport.service</handler>
<frequency>900</frequency>
</cron>
</crons>
</module>