Merge pull request #22879 from owncloud/stable9-backport-use-clob-for-timezone
[stable9] Use CLOB for timezone
This commit is contained in:
commit
5488bb74fe
|
@ -283,7 +283,7 @@ CREATE TABLE calendarobjects (
|
||||||
description TEXT,
|
description TEXT,
|
||||||
calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||||
calendarcolor VARBINARY(10),
|
calendarcolor VARBINARY(10),
|
||||||
timezone TEXT,
|
timezone CLOB,
|
||||||
components VARBINARY(20),
|
components VARBINARY(20),
|
||||||
transparent TINYINT(1) NOT NULL DEFAULT '0',
|
transparent TINYINT(1) NOT NULL DEFAULT '0',
|
||||||
UNIQUE(principaluri, uri)
|
UNIQUE(principaluri, uri)
|
||||||
|
@ -337,7 +337,7 @@ CREATE TABLE calendarobjects (
|
||||||
</field>
|
</field>
|
||||||
<field>
|
<field>
|
||||||
<name>timezone</name>
|
<name>timezone</name>
|
||||||
<type>text</type>
|
<type>clob</type>
|
||||||
</field>
|
</field>
|
||||||
<field>
|
<field>
|
||||||
<name>components</name>
|
<name>components</name>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<description>ownCloud WebDAV endpoint</description>
|
<description>ownCloud WebDAV endpoint</description>
|
||||||
<licence>AGPL</licence>
|
<licence>AGPL</licence>
|
||||||
<author>owncloud.org</author>
|
<author>owncloud.org</author>
|
||||||
<version>0.1.4</version>
|
<version>0.1.5</version>
|
||||||
<default_enable/>
|
<default_enable/>
|
||||||
<types>
|
<types>
|
||||||
<filesystem/>
|
<filesystem/>
|
||||||
|
|
Loading…
Reference in New Issue