summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/appinfo
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-30 21:27:52 +0200
committerJoas Schilling <coding@schilljs.com>2020-07-06 16:42:14 +0200
commit9001438879007b0b92b573d761a9cb15f34b959f (patch)
tree64c369425ce012d3ee16b9a18bd58a7939ff49e3 /apps/files_trashbin/appinfo
parent347ab5241cb078f7d5a81aa921d55ffe76ebf02a (diff)
downloadnextcloud-server-9001438879007b0b92b573d761a9cb15f34b959f.tar.gz
nextcloud-server-9001438879007b0b92b573d761a9cb15f34b959f.zip
Move files_trashbin to migrations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_trashbin/appinfo')
-rw-r--r--apps/files_trashbin/appinfo/database.xml101
-rw-r--r--apps/files_trashbin/appinfo/info.xml2
2 files changed, 1 insertions, 102 deletions
diff --git a/apps/files_trashbin/appinfo/database.xml b/apps/files_trashbin/appinfo/database.xml
deleted file mode 100644
index 2944a31b02d..00000000000
--- a/apps/files_trashbin/appinfo/database.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<database>
-
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
-
- <charset>utf8</charset>
-
- <table>
-
- <name>*dbprefix*files_trash</name>
-
- <declaration>
-
- <field>
- <name>auto_id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
-
- <field>
- <name>id</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>250</length>
- </field>
-
- <field>
- <name>user</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>64</length>
- </field>
-
- <field>
- <name>timestamp</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>12</length>
- </field>
-
- <field>
- <name>location</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>512</length>
- </field>
-
- <field>
- <name>type</name>
- <type>text</type>
- <default></default>
- <notnull>false</notnull>
- <length>4</length>
- </field>
-
- <field>
- <name>mime</name>
- <type>text</type>
- <default></default>
- <notnull>false</notnull>
- <length>255</length>
- </field>
-
- <index>
- <name>id_index</name>
- <field>
- <name>id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- <index>
- <name>timestamp_index</name>
- <field>
- <name>timestamp</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- <index>
- <name>user_index</name>
- <field>
- <name>user</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- </declaration>
-
- </table>
-
-</database>
diff --git a/apps/files_trashbin/appinfo/info.xml b/apps/files_trashbin/appinfo/info.xml
index a6fb06c23cd..39377ecd208 100644
--- a/apps/files_trashbin/appinfo/info.xml
+++ b/apps/files_trashbin/appinfo/info.xml
@@ -9,7 +9,7 @@ This application enables users to restore files that were deleted from the syste
To prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation.
</description>
- <version>1.10.0</version>
+ <version>1.10.1</version>
<licence>agpl</licence>
<author>Bjoern Schiessle</author>
<namespace>Files_Trashbin</namespace>