diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-09-27 18:51:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-27 18:51:40 +0200 |
commit | 06e969cb74aacc3d6490d3207a625cc712941968 (patch) | |
tree | 5b5a47b35ae419bdacf37768da99fa37c1ab9f87 /apps/dav/appinfo/database.xml | |
parent | 6ca8ce62288aa5b181f97c45ad62c35976dbb65f (diff) | |
parent | dcc23114e9328d822539782644bedcf5cba7e72d (diff) | |
download | nextcloud-server-06e969cb74aacc3d6490d3207a625cc712941968.tar.gz nextcloud-server-06e969cb74aacc3d6490d3207a625cc712941968.zip |
Merge pull request #1197 from nextcloud/oc-public-sharing
CalDAV calendar public sharing
Diffstat (limited to 'apps/dav/appinfo/database.xml')
-rw-r--r-- | apps/dav/appinfo/database.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/dav/appinfo/database.xml b/apps/dav/appinfo/database.xml index b86129485d8..0efd2a46d61 100644 --- a/apps/dav/appinfo/database.xml +++ b/apps/dav/appinfo/database.xml @@ -703,6 +703,11 @@ CREATE TABLE calendarobjects ( <notnull>true</notnull> <unsigned>true</unsigned> </field> + <field> + <name>publicuri</name> + <type>text</type> + <length>255</length> + </field> <index> <name>dav_shares_index</name> <unique>true</unique> @@ -715,6 +720,9 @@ CREATE TABLE calendarobjects ( <field> <name>type</name> </field> + <field> + <name>publicuri</name> + </field> </index> </declaration> </table> |