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

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-01-07 17:09:36 +0300
committerJoas Schilling <coding@schilljs.com>2019-01-07 17:09:36 +0300
commita40f49b63b43d2890ed0ea521956d24c00d34dfe (patch)
tree23fa48b28fa6f68e4f0d73d8fb80e42099efddef /appinfo
parent7dd7bb00e7dad03a74125ab05ded2991e3bc0f79 (diff)
Move to migrations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rwxr-xr-xappinfo/database.xml189
-rw-r--r--appinfo/info.xml2
2 files changed, 1 insertions, 190 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100755
index d24b98e..0000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,189 +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*notifications</name>
- <declaration>
- <field>
- <name>notification_id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
- <field>
- <name>app</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>32</length>
- </field>
- <field>
- <name>user</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>timestamp</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>object_type</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>object_id</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>subject</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>subject_parameters</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>message</name>
- <type>text</type>
- <notnull>false</notnull>
- <length>64</length>
- </field>
- <field>
- <name>message_parameters</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>link</name>
- <type>text</type>
- <notnull>false</notnull>
- <length>4000</length>
- </field>
- <field>
- <name>icon</name>
- <type>text</type>
- <notnull>false</notnull>
- <length>4000</length>
- </field>
- <field>
- <name>actions</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
-
- <index>
- <name>oc_notifications_app</name>
- <field>
- <name>app</name>
- </field>
- </index>
-
- <index>
- <name>oc_notifications_user</name>
- <field>
- <name>user</name>
- </field>
- </index>
-
- <index>
- <name>oc_notifications_timestamp</name>
- <field>
- <name>timestamp</name>
- </field>
- </index>
-
- <index>
- <name>oc_notifications_object</name>
- <field>
- <name>object_type</name>
- </field>
- <field>
- <name>object_id</name>
- </field>
- </index>
- </declaration>
- </table>
-
- <table>
- <name>*dbprefix*notifications_pushtokens</name>
- <declaration>
- <field>
- <name>uid</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>token</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>deviceidentifier</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>128</length>
- </field>
- <field>
- <name>devicepublickey</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>512</length>
- </field>
- <field>
- <name>devicepublickeyhash</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>128</length>
- </field>
- <field>
- <name>pushtokenhash</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>128</length>
- </field>
- <field>
- <name>proxyserver</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>256</length>
- </field>
- <field>
- <name>apptype</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>32</length>
- <default>unknown</default>
- </field>
-
- <index>
- <name>oc_notifpushtoken</name>
- <unique>true</unique>
- <field>
- <name>uid</name>
- </field>
- <field>
- <name>token</name>
- </field>
- </index>
- </declaration>
- </table>
-</database>
diff --git a/appinfo/info.xml b/appinfo/info.xml
index fb2614a..d5f0282 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -15,7 +15,7 @@
📣 Announcement center: An announcement was posted by an admin]]></description>
- <version>2.4.0</version>
+ <version>2.4.1</version>
<licence>agpl</licence>
<author>Joas Schilling</author>