]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add MigrationStep to add better Indizes
authorGeorg Ehrke <developer@georgehrke.com>
Wed, 2 Sep 2020 12:33:40 +0000 (14:33 +0200)
committerGeorg Ehrke <developer@georgehrke.com>
Mon, 7 Sep 2020 09:30:18 +0000 (11:30 +0200)
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
apps/user_status/appinfo/info.xml
apps/user_status/composer/composer/autoload_classmap.php
apps/user_status/composer/composer/autoload_static.php
apps/user_status/lib/Migration/Version0002Date20200902144824.php [new file with mode: 0644]

index 46036812f357d21fb6dd2743f8e5cc77813f6783..26d8113a84205d5600c117a8e25b1da0a2625cb7 100644 (file)
@@ -5,7 +5,7 @@
     <name>User status</name>
     <summary>User status</summary>
     <description><![CDATA[User status]]></description>
-    <version>0.0.2</version>
+    <version>1.0.0</version>
     <licence>agpl</licence>
     <author mail="oc.list@georgehrke.com" >Georg Ehrke</author>
     <namespace>UserStatus</namespace>
index 151d8348078ca320966b5e2e801737f45b68e010..ba2ed1f176211c3cffa2bd0a7fae71b6f8b45459 100644 (file)
@@ -27,6 +27,7 @@ return array(
     'OCA\\UserStatus\\Listener\\UserDeletedListener' => $baseDir . '/../lib/Listener/UserDeletedListener.php',
     'OCA\\UserStatus\\Listener\\UserLiveStatusListener' => $baseDir . '/../lib/Listener/UserLiveStatusListener.php',
     'OCA\\UserStatus\\Migration\\Version0001Date20200602134824' => $baseDir . '/../lib/Migration/Version0001Date20200602134824.php',
+    'OCA\\UserStatus\\Migration\\Version0002Date20200902144824' => $baseDir . '/../lib/Migration/Version0002Date20200902144824.php',
     'OCA\\UserStatus\\Service\\EmojiService' => $baseDir . '/../lib/Service/EmojiService.php',
     'OCA\\UserStatus\\Service\\JSDataService' => $baseDir . '/../lib/Service/JSDataService.php',
     'OCA\\UserStatus\\Service\\PredefinedStatusService' => $baseDir . '/../lib/Service/PredefinedStatusService.php',
index bed8bc364bf12cd610644687c7cfbd12f9be13ec..fd05c1c1627ff8a563c30857cf51b911f0e4e955 100644 (file)
@@ -42,6 +42,7 @@ class ComposerStaticInitUserStatus
         'OCA\\UserStatus\\Listener\\UserDeletedListener' => __DIR__ . '/..' . '/../lib/Listener/UserDeletedListener.php',
         'OCA\\UserStatus\\Listener\\UserLiveStatusListener' => __DIR__ . '/..' . '/../lib/Listener/UserLiveStatusListener.php',
         'OCA\\UserStatus\\Migration\\Version0001Date20200602134824' => __DIR__ . '/..' . '/../lib/Migration/Version0001Date20200602134824.php',
+        'OCA\\UserStatus\\Migration\\Version0002Date20200902144824' => __DIR__ . '/..' . '/../lib/Migration/Version0002Date20200902144824.php',
         'OCA\\UserStatus\\Service\\EmojiService' => __DIR__ . '/..' . '/../lib/Service/EmojiService.php',
         'OCA\\UserStatus\\Service\\JSDataService' => __DIR__ . '/..' . '/../lib/Service/JSDataService.php',
         'OCA\\UserStatus\\Service\\PredefinedStatusService' => __DIR__ . '/..' . '/../lib/Service/PredefinedStatusService.php',
diff --git a/apps/user_status/lib/Migration/Version0002Date20200902144824.php b/apps/user_status/lib/Migration/Version0002Date20200902144824.php
new file mode 100644 (file)
index 0000000..abec418
--- /dev/null
@@ -0,0 +1,57 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright Copyright (c) 2020, Georg Ehrke
+ *
+ * @author Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\UserStatus\Migration;
+
+use OCP\DB\ISchemaWrapper;
+use OCP\Migration\IOutput;
+use OCP\Migration\SimpleMigrationStep;
+
+/**
+ * Class Version0001Date20200602134824
+ *
+ * @package OCA\UserStatus\Migration
+ */
+class Version0002Date20200902144824 extends SimpleMigrationStep {
+
+       /**
+        * @param IOutput $output
+        * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
+        * @param array $options
+        * @return null|ISchemaWrapper
+        * @since 20.0.0
+        */
+       public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
+               /** @var ISchemaWrapper $schema */
+               $schema = $schemaClosure();
+
+               $statusTable = $schema->getTable('user_status');
+
+               $statusTable->addIndex(['status_timestamp'], 'user_status_tstmp_ix');
+               $statusTable->addIndex(['is_user_defined', 'status'], 'user_status_iud_ix');
+
+               return $schema;
+       }
+}