diff options
Diffstat (limited to 'apps/federation/appinfo/database.xml')
-rw-r--r-- | apps/federation/appinfo/database.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/apps/federation/appinfo/database.xml b/apps/federation/appinfo/database.xml index da16212ca19..e0bb241918e 100644 --- a/apps/federation/appinfo/database.xml +++ b/apps/federation/appinfo/database.xml @@ -28,7 +28,27 @@ <default></default> <notnull>true</notnull> <length>32</length> - <comments>md5 hash of the url</comments> + <comments>md5 hash of the url without the protocol</comments> + </field> + <field> + <name>token</name> + <type>text</type> + <length>128</length> + <comments>toke used to exchange the shared secret</comments> + </field> + <field> + <name>shared_secret</name> + <type>text</type> + <length>256</length> + <comments>shared secret used to authenticate</comments> + </field> + <field> + <name>status</name> + <type>integer</type> + <length>4</length> + <notnull>true</notnull> + <default>2</default> + <comments>current status of the connection</comments> </field> <index> <name>url_hash</name> |