diff options
author | C. Montero Luque <cmonteroluque@users.noreply.github.com> | 2016-03-04 18:00:48 -0500 |
---|---|---|
committer | C. Montero Luque <cmonteroluque@users.noreply.github.com> | 2016-03-04 18:00:48 -0500 |
commit | b3656f143491e16a8b66295e48ff5e939679d0fa (patch) | |
tree | 0c555fb007bda3de29edb805f5764b9857d47a44 /apps | |
parent | fe86e0c2f89f88a597c0ce4c45565be1a63f2bec (diff) | |
parent | b302ec8381dbd25170926a5c0a89636d56a0d4ff (diff) | |
download | nextcloud-server-b3656f143491e16a8b66295e48ff5e939679d0fa.tar.gz nextcloud-server-b3656f143491e16a8b66295e48ff5e939679d0fa.zip |
Merge pull request #22878 from owncloud/use-clob-for-timezone
Use CLOB for timezone
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/appinfo/database.xml | 4 | ||||
-rw-r--r-- | apps/dav/appinfo/info.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/appinfo/database.xml b/apps/dav/appinfo/database.xml index 4221e590fa5..b0a7ad4f2a8 100644 --- a/apps/dav/appinfo/database.xml +++ b/apps/dav/appinfo/database.xml @@ -283,7 +283,7 @@ CREATE TABLE calendarobjects ( description TEXT, calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0', calendarcolor VARBINARY(10), - timezone TEXT, + timezone CLOB, components VARBINARY(20), transparent TINYINT(1) NOT NULL DEFAULT '0', UNIQUE(principaluri, uri) @@ -337,7 +337,7 @@ CREATE TABLE calendarobjects ( </field> <field> <name>timezone</name> - <type>text</type> + <type>clob</type> </field> <field> <name>components</name> diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml index 16222463111..4f1e805d99e 100644 --- a/apps/dav/appinfo/info.xml +++ b/apps/dav/appinfo/info.xml @@ -5,7 +5,7 @@ <description>ownCloud WebDAV endpoint</description> <licence>AGPL</licence> <author>owncloud.org</author> - <version>0.2.0</version> + <version>0.2.1</version> <default_enable/> <types> <filesystem/> |