diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-06-16 15:54:25 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-06-16 15:54:25 -0400 |
commit | e6621b9c783f7605b0b2f99051e205c30240ea98 (patch) | |
tree | 61c7eaadabd24faa51e2287edd216d23ceead1d6 /apps/files_sharing/appinfo/database.xml | |
parent | fe4a213e1b39c90920fcf770ab0a82b73b1a9c09 (diff) | |
download | nextcloud-server-e6621b9c783f7605b0b2f99051e205c30240ea98.tar.gz nextcloud-server-e6621b9c783f7605b0b2f99051e205c30240ea98.zip |
Added source and target to database fields
Diffstat (limited to 'apps/files_sharing/appinfo/database.xml')
-rw-r--r-- | apps/files_sharing/appinfo/database.xml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml index fa56dbe803d..bb80484bd63 100644 --- a/apps/files_sharing/appinfo/database.xml +++ b/apps/files_sharing/appinfo/database.xml @@ -14,25 +14,32 @@ <length>128</length> </field> <field> + <name>source</name> + <type>text</type> + <notnull>true</notnull> + <length>128</length> + </field> + <field> + <name>target</name> + <type>text</type> + <notnull>true</notnull> + <length>128</length> + </field> + <field> <name>uid_owner</name> <type>text</type> - <default></default> <notnull>true</notnull> <length>64</length> </field> <field> <name>uid_shared_with</name> <type>text</type> - <default> - </default> <notnull>true</notnull> <length>64</length> </field> <field> <name>permissions</name> <type>text</type> - <default> - </default> <notnull>true</notnull> <length>3</length> </field> |