diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-03 16:22:18 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-12 14:24:01 +0100 |
commit | cdc536c42367a1c7667a63c598f50b95956da759 (patch) | |
tree | 2805f98880091afccffcea07ebbe5dda643a0425 /apps/federation/appinfo/database.xml | |
parent | 4fc0fbe8d04b7b89ffe1c3b79621ebe12b2057be (diff) | |
download | nextcloud-server-cdc536c42367a1c7667a63c598f50b95956da759.tar.gz nextcloud-server-cdc536c42367a1c7667a63c598f50b95956da759.zip |
Allow trusted servers to authenticate
Diffstat (limited to 'apps/federation/appinfo/database.xml')
-rw-r--r-- | apps/federation/appinfo/database.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/federation/appinfo/database.xml b/apps/federation/appinfo/database.xml index e0bb241918e..e6728df1408 100644 --- a/apps/federation/appinfo/database.xml +++ b/apps/federation/appinfo/database.xml @@ -34,7 +34,7 @@ <name>token</name> <type>text</type> <length>128</length> - <comments>toke used to exchange the shared secret</comments> + <comments>token used to exchange the shared secret</comments> </field> <field> <name>shared_secret</name> @@ -50,6 +50,13 @@ <default>2</default> <comments>current status of the connection</comments> </field> + <field> + <name>sync_token</name> + <type>integer</type> + <notnull>true</notnull> + <default>0</default> + <comments>cardDav sync token</comments> + </field> <index> <name>url_hash</name> <unique>true</unique> |