2015-10-30 18:05:25 +03:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
|
|
<database>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
CREATE TABLE addressbooks (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
principaluri VARBINARY(255),
|
|
|
|
displayname VARCHAR(255),
|
|
|
|
uri VARBINARY(200),
|
|
|
|
description TEXT,
|
|
|
|
synctoken INT(11) UNSIGNED NOT NULL DEFAULT '1',
|
|
|
|
UNIQUE(principaluri(100), uri(100))
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<name>*dbprefix*addressbooks</name>
|
|
|
|
|
|
|
|
<declaration>
|
|
|
|
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>displayname</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>description</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>1</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<index>
|
|
|
|
<name>addressbook_index</name>
|
|
|
|
<unique>true</unique>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
CREATE TABLE cards (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
addressbookid INT(11) UNSIGNED NOT NULL,
|
|
|
|
carddata MEDIUMBLOB,
|
|
|
|
uri VARBINARY(200),
|
|
|
|
lastmodified INT(11) UNSIGNED,
|
|
|
|
etag VARBINARY(32),
|
|
|
|
size INT(11) UNSIGNED NOT NULL
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*cards</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>addressbookid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>carddata</name>
|
|
|
|
<type>blob</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>lastmodified</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>etag</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>32</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>size</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
CREATE TABLE addressbookchanges (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
uri VARBINARY(200) NOT NULL,
|
|
|
|
synctoken INT(11) UNSIGNED NOT NULL,
|
|
|
|
addressbookid INT(11) UNSIGNED NOT NULL,
|
|
|
|
operation TINYINT(1) NOT NULL,
|
|
|
|
INDEX addressbookid_synctoken (addressbookid, synctoken)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*addressbookchanges</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-30 18:05:25 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>1</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>addressbookid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>operation</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
|
|
|
|
<index>
|
|
|
|
<name>addressbookid_synctoken</name>
|
|
|
|
<field>
|
|
|
|
<name>addressbookid</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
2015-10-31 03:28:21 +03:00
|
|
|
|
|
|
|
<!--
|
|
|
|
CREATE TABLE calendarobjects (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
calendardata MEDIUMBLOB,
|
|
|
|
uri VARBINARY(200),
|
|
|
|
calendarid INTEGER UNSIGNED NOT NULL,
|
|
|
|
lastmodified INT(11) UNSIGNED,
|
|
|
|
etag VARBINARY(32),
|
|
|
|
size INT(11) UNSIGNED NOT NULL,
|
|
|
|
componenttype VARBINARY(8),
|
|
|
|
firstoccurence INT(11) UNSIGNED,
|
|
|
|
lastoccurence INT(11) UNSIGNED,
|
|
|
|
uid VARBINARY(200),
|
|
|
|
UNIQUE(calendarid, uri)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*calendarobjects</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendardata</name>
|
|
|
|
<type>blob</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>lastmodified</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>etag</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>32</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>size</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>componenttype</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>8</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>firstoccurence</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
2016-04-25 15:33:19 +03:00
|
|
|
<length>11</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>lastoccurence</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
2016-04-25 15:33:19 +03:00
|
|
|
<length>11</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uid</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
2016-04-19 12:33:37 +03:00
|
|
|
<field>
|
|
|
|
<comments>0 - public, 1 - private, 2 - confidential</comments>
|
|
|
|
<name>classification</name>
|
2016-04-19 12:47:06 +03:00
|
|
|
<type>integer</type>
|
2016-04-19 12:33:37 +03:00
|
|
|
<default>0</default>
|
|
|
|
</field>
|
2015-10-31 03:28:21 +03:00
|
|
|
<index>
|
|
|
|
<name>calobjects_index</name>
|
|
|
|
<unique>true</unique>
|
|
|
|
<field>
|
|
|
|
<name>calendarid</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
<!--
|
|
|
|
CREATE TABLE calendars (
|
|
|
|
id INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
principaluri VARBINARY(100),
|
|
|
|
displayname VARCHAR(100),
|
|
|
|
uri VARBINARY(200),
|
|
|
|
synctoken INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
|
|
|
description TEXT,
|
|
|
|
calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
|
|
|
calendarcolor VARBINARY(10),
|
2016-03-04 23:55:08 +03:00
|
|
|
timezone CLOB,
|
2015-10-31 03:28:21 +03:00
|
|
|
components VARBINARY(20),
|
|
|
|
transparent TINYINT(1) NOT NULL DEFAULT '0',
|
|
|
|
UNIQUE(principaluri, uri)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*calendars</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>displayname</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>1</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>description</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarorder</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarcolor</name>
|
|
|
|
<type>text</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>timezone</name>
|
2016-03-04 23:55:08 +03:00
|
|
|
<type>clob</type>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>components</name>
|
|
|
|
<type>text</type>
|
2016-09-27 18:03:57 +03:00
|
|
|
<length>64</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>transparent</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<length>1</length>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<default>0</default>
|
|
|
|
</field>
|
|
|
|
<index>
|
|
|
|
<name>calendars_index</name>
|
|
|
|
<unique>true</unique>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
<!--
|
|
|
|
CREATE TABLE calendarchanges (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
uri VARBINARY(200) NOT NULL,
|
|
|
|
synctoken INT(11) UNSIGNED NOT NULL,
|
|
|
|
calendarid INT(11) UNSIGNED NOT NULL,
|
|
|
|
operation TINYINT(1) NOT NULL,
|
|
|
|
INDEX calendarid_synctoken (calendarid, synctoken)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*calendarchanges</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>1</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>operation</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
|
|
|
|
<index>
|
|
|
|
<name>calendarid_synctoken</name>
|
|
|
|
<field>
|
|
|
|
<name>calendarid</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>synctoken</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
CREATE TABLE calendarsubscriptions (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
uri VARBINARY(200) NOT NULL,
|
|
|
|
principaluri VARBINARY(100) NOT NULL,
|
|
|
|
source TEXT,
|
|
|
|
displayname VARCHAR(100),
|
|
|
|
refreshrate VARCHAR(10),
|
|
|
|
calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
|
|
|
calendarcolor VARBINARY(10),
|
|
|
|
striptodos TINYINT(1) NULL,
|
|
|
|
stripalarms TINYINT(1) NULL,
|
|
|
|
stripattachments TINYINT(1) NULL,
|
|
|
|
lastmodified INT(11) UNSIGNED,
|
|
|
|
UNIQUE(principaluri, uri)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*calendarsubscriptions</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>source</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>displayname</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>100</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>refreshrate</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>10</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarorder</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarcolor</name>
|
|
|
|
<type>text</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>striptodos</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>stripalarms</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>stripattachments</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>lastmodified</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<index>
|
|
|
|
<name>calsub_index</name>
|
|
|
|
<unique>true</unique>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
<!--
|
|
|
|
CREATE TABLE schedulingobjects (
|
|
|
|
id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
|
|
principaluri VARBINARY(255),
|
|
|
|
calendardata MEDIUMBLOB,
|
|
|
|
uri VARBINARY(200),
|
|
|
|
lastmodified INT(11) UNSIGNED,
|
|
|
|
etag VARBINARY(32),
|
|
|
|
size INT(11) UNSIGNED NOT NULL
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
-->
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<name>*dbprefix*schedulingobjects</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendardata</name>
|
|
|
|
<type>blob</type>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>uri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-10-31 03:28:21 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>lastmodified</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>etag</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>32</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>size</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
|
|
|
|
</declaration>
|
|
|
|
</table>
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2015-11-25 17:24:50 +03:00
|
|
|
<table>
|
|
|
|
<name>*dbprefix*cards_properties</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>addressbookid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>cardid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<type>text</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>false</notnull>
|
|
|
|
<length>64</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>value</name>
|
|
|
|
<type>text</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>false</notnull>
|
|
|
|
<length>255</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>preferred</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>1</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<length>4</length>
|
|
|
|
</field>
|
|
|
|
<index>
|
|
|
|
<name>card_contactid_index</name>
|
|
|
|
<field>
|
|
|
|
<name>cardid</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
<index>
|
|
|
|
<name>card_name_index</name>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
<index>
|
|
|
|
<name>card_value_index</name>
|
|
|
|
<field>
|
|
|
|
<name>value</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
2017-03-25 13:56:40 +03:00
|
|
|
<table>
|
2017-04-26 11:06:10 +03:00
|
|
|
<name>*dbprefix*calendarobjects_props</name>
|
2017-03-25 13:56:40 +03:00
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>calendarid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>objectid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<type>text</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>false</notnull>
|
|
|
|
<length>64</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>parameter</name>
|
|
|
|
<type>text</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>false</notnull>
|
|
|
|
<length>64</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>value</name>
|
|
|
|
<type>text</type>
|
|
|
|
<default></default>
|
|
|
|
<notnull>false</notnull>
|
|
|
|
<length>255</length>
|
|
|
|
</field>
|
|
|
|
<index>
|
|
|
|
<name>calendarobject_index</name>
|
|
|
|
<field>
|
|
|
|
<name>objectid</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
<index>
|
|
|
|
<name>calendarobject_name_index</name>
|
|
|
|
<field>
|
|
|
|
<name>name</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
<index>
|
|
|
|
<name>calendarobject_value_index</name>
|
|
|
|
<field>
|
|
|
|
<name>value</name>
|
|
|
|
<sorting>ascending</sorting>
|
|
|
|
</field>
|
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
|
|
|
|
2015-11-05 18:46:37 +03:00
|
|
|
<table>
|
|
|
|
<name>*dbprefix*dav_shares</name>
|
|
|
|
<declaration>
|
|
|
|
<field>
|
|
|
|
<name>id</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<default>0</default>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<autoincrement>1</autoincrement>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
<length>11</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-11-05 18:46:37 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>type</name>
|
|
|
|
<type>text</type>
|
2016-03-23 14:03:54 +03:00
|
|
|
<length>255</length>
|
2015-11-05 18:46:37 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>access</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<length>1</length>
|
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>resourceid</name>
|
|
|
|
<type>integer</type>
|
|
|
|
<notnull>true</notnull>
|
|
|
|
<unsigned>true</unsigned>
|
|
|
|
</field>
|
2016-08-01 17:44:28 +03:00
|
|
|
<field>
|
|
|
|
<name>publicuri</name>
|
|
|
|
<type>text</type>
|
|
|
|
<length>255</length>
|
|
|
|
</field>
|
2015-11-05 18:46:37 +03:00
|
|
|
<index>
|
|
|
|
<name>dav_shares_index</name>
|
|
|
|
<unique>true</unique>
|
|
|
|
<field>
|
|
|
|
<name>principaluri</name>
|
|
|
|
</field>
|
|
|
|
<field>
|
2016-01-21 18:20:52 +03:00
|
|
|
<name>resourceid</name>
|
2015-11-05 18:46:37 +03:00
|
|
|
</field>
|
|
|
|
<field>
|
|
|
|
<name>type</name>
|
|
|
|
</field>
|
2016-08-01 17:44:28 +03:00
|
|
|
<field>
|
|
|
|
<name>publicuri</name>
|
|
|
|
</field>
|
2015-11-05 18:46:37 +03:00
|
|
|
</index>
|
|
|
|
</declaration>
|
|
|
|
</table>
|
2015-10-30 18:05:25 +03:00
|
|
|
</database>
|