Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-08-06 19:43:08 +0300
committerRobin Appelman <robin@icewind.nl>2018-08-06 19:46:50 +0300
commit76e7b9796392350223c52bcfd483ad481f68497c (patch)
treef42448ccf87d6a339ae2c517104e57032fa8f8c4 /appinfo
parent7edb64e78beff91f9d1f8c6c1bf694b5ba21030a (diff)
rename applicable folder to comply with oracle limitations
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml89
-rw-r--r--appinfo/info.xml2
2 files changed, 1 insertions, 90 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index 3579e014..00000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-<database>
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
- <charset>utf8</charset>
- <table>
- <name>*dbprefix*group_folders</name>
- <declaration>
- <field>
- <name>folder_id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>6</length>
- </field>
- <field>
- <name>mount_point</name>
- <type>text</type>
- <length>128</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>quota</name>
- <type>integer</type>
- <notnull>true</notnull>
- <length>6</length>
- <default>-3</default>
- </field>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*group_folders_applicable</name>
- <declaration>
- <field>
- <name>applicable_id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>6</length>
- </field>
- <field>
- <name>folder_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <length>6</length>
- </field>
- <field>
- <name>permissions</name>
- <type>integer</type>
- <length>4</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>group_id</name>
- <type>text</type>
- <length>64</length>
- </field>
-
- <index>
- <name>applicable_folder</name>
- <field>
- <name>folder_id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- <index>
- <name>applicable_folder_value</name>
- <field>
- <name>group_id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- <index>
- <name>applicable_folder_group</name>
- <unique>true</unique>
- <field>
- <name>folder_id</name>
- <sorting>ascending</sorting>
- </field>
- <field>
- <name>group_id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- </declaration>
- </table>
-</database>
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 338d0709..fef1b5d7 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -10,7 +10,7 @@ Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.
Note: encrypting the contents of group folders is currently not supported.]]></description>
- <version>1.2.2</version>
+ <version>1.3.0</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>GroupFolders</namespace>