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

github.com/nextcloud/previewgenerator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-08-23 10:24:53 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-08-23 10:24:53 +0300
commit6427ae59b6d7f4785433e0fcf633444e8b202d1e (patch)
treed6dd15f38f9438179dcfdd0d6b9e08f963ce8234 /appinfo
parent5a5c5220e6d472f76d33cd02518ff769ed35277e (diff)
Move database over to migrations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml34
-rw-r--r--appinfo/info.xml2
2 files changed, 1 insertions, 35 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index 2e6697e..0000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,34 +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*preview_generation</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
-
- <field>
- <name>uid</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>256</length>
- </field>
- <field>
- <name>file_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- </declaration>
- </table>
-</database>
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 5b47c7c..396593f 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -11,7 +11,7 @@ The app does not replace on demand preview generation so if a preview is request
</description>
<licence>AGPL</licence>
<author>Roeland Jago Douma</author>
- <version>1.99.0</version>
+ <version>1.99.1</version>
<namespace>PreviewGenerator</namespace>
<category>multimedia</category>
<website>https://github.com/rullzer/previewgenerator</website>