diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-07-20 14:42:48 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-07-20 14:42:48 -0400 |
commit | 1cfa911ce38a22788fae73e0770156263fdc03e5 (patch) | |
tree | 6e02726b08c7902cf0a58c2e1b1591cffd977a40 /apps/files_sharing/appinfo/database.xml | |
parent | abf6ba621a4ae62eb84d6218319cc9b631e6de03 (diff) | |
download | nextcloud-server-1cfa911ce38a22788fae73e0770156263fdc03e5.tar.gz nextcloud-server-1cfa911ce38a22788fae73e0770156263fdc03e5.zip |
Update database.xml to current database fields, remove hard coded MTGap when mounting shared storage provider
Diffstat (limited to 'apps/files_sharing/appinfo/database.xml')
-rw-r--r-- | apps/files_sharing/appinfo/database.xml | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml index bb80484bd63..3378b6b09e5 100644 --- a/apps/files_sharing/appinfo/database.xml +++ b/apps/files_sharing/appinfo/database.xml @@ -8,40 +8,34 @@ <name>*dbprefix*sharing</name> <declaration> <field> - <name>item</name> + <name>uid_owner</name> <type>text</type> <notnull>true</notnull> - <length>128</length> + <length>64</length> </field> <field> - <name>source</name> + <name>uid_shared_with</name> <type>text</type> <notnull>true</notnull> - <length>128</length> + <length>64</length> </field> <field> - <name>target</name> + <name>source</name> <type>text</type> <notnull>true</notnull> <length>128</length> </field> <field> - <name>uid_owner</name> + <name>target</name> <type>text</type> <notnull>true</notnull> - <length>64</length> + <length>128</length> </field> <field> - <name>uid_shared_with</name> - <type>text</type> - <notnull>true</notnull> - <length>64</length> - </field> - <field> <name>permissions</name> - <type>text</type> + <type>integer</type> <notnull>true</notnull> - <length>3</length> + <length>1</length> </field> </declaration> </table> |