From e6621b9c783f7605b0b2f99051e205c30240ea98 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski <GapczynskiM@gmail.com> Date: Thu, 16 Jun 2011 15:54:25 -0400 Subject: [PATCH] Added source and target to database fields --- apps/files_sharing/appinfo/database.xml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml index fa56dbe803..bb80484bd6 100644 --- a/apps/files_sharing/appinfo/database.xml +++ b/apps/files_sharing/appinfo/database.xml @@ -13,26 +13,33 @@ <notnull>true</notnull> <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> -- GitLab