aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_versions/appinfo
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-02-21 12:20:29 +0100
committerBjörn Schießle <schiessle@owncloud.com>2013-02-21 12:20:29 +0100
commitc24ec867f9e428dd90c021736c2d92c0516e3526 (patch)
tree5d4c912cf8feaa0a6216e35427db82a05b2855b4 /apps/files_versions/appinfo
parentc8c0e72e730330f7f066137c2045572a5349ec7e (diff)
downloadnextcloud-server-c24ec867f9e428dd90c021736c2d92c0516e3526.tar.gz
nextcloud-server-c24ec867f9e428dd90c021736c2d92c0516e3526.zip
calculate versions size per user
Diffstat (limited to 'apps/files_versions/appinfo')
-rw-r--r--apps/files_versions/appinfo/database.xml35
-rw-r--r--apps/files_versions/appinfo/version2
2 files changed, 36 insertions, 1 deletions
diff --git a/apps/files_versions/appinfo/database.xml b/apps/files_versions/appinfo/database.xml
new file mode 100644
index 00000000000..7cfa5aa79af
--- /dev/null
+++ b/apps/files_versions/appinfo/database.xml
@@ -0,0 +1,35 @@
+<?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_versions</name>
+
+ <declaration>
+
+ <field>
+ <name>user</name>
+ <type>text</type>
+ <default></default>
+ <notnull>true</notnull>
+ <length>50</length>
+ </field>
+ <field>
+ <name>size</name>
+ <type>text</type>
+ <default></default>
+ <notnull>true</notnull>
+ <length>50</length>
+ </field>
+
+ </declaration>
+
+ </table>
+
+</database>
diff --git a/apps/files_versions/appinfo/version b/apps/files_versions/appinfo/version
index e6d5cb833c6..e4c0d46e55f 100644
--- a/apps/files_versions/appinfo/version
+++ b/apps/files_versions/appinfo/version
@@ -1 +1 @@
-1.0.2 \ No newline at end of file
+1.0.3 \ No newline at end of file