summaryrefslogtreecommitdiffstats
path: root/apps/dav/appinfo
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-05 16:46:37 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-11-19 11:34:31 +0100
commit4eb15885c9a7e930670ed58af2e566c1928bc059 (patch)
tree14f21c884aad92fba5fe00fc31429b90eca42d08 /apps/dav/appinfo
parent58eaeb267c60ed2aed4b5592a28d16f5453bb773 (diff)
downloadnextcloud-server-4eb15885c9a7e930670ed58af2e566c1928bc059.tar.gz
nextcloud-server-4eb15885c9a7e930670ed58af2e566c1928bc059.zip
Addressbook sharing added based on a simplified approach which is based on calendar sharing standard
Diffstat (limited to 'apps/dav/appinfo')
-rw-r--r--apps/dav/appinfo/database.xml51
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/dav/appinfo/database.xml b/apps/dav/appinfo/database.xml
index 5e2dad097e4..48641c2be6f 100644
--- a/apps/dav/appinfo/database.xml
+++ b/apps/dav/appinfo/database.xml
@@ -570,4 +570,55 @@ CREATE TABLE calendarobjects (
</declaration>
</table>
+
+ <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>uri</name>
+ <type>text</type>
+ </field>
+ <field>
+ <name>principaluri</name>
+ <type>text</type>
+ </field>
+ <field>
+ <name>type</name>
+ <type>text</type>
+ </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>
+ <index>
+ <name>dav_shares_index</name>
+ <unique>true</unique>
+ <field>
+ <name>principaluri</name>
+ </field>
+ <field>
+ <name>uri</name>
+ </field>
+ <field>
+ <name>type</name>
+ </field>
+ </index>
+ </declaration>
+ </table>
</database>