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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Zimmer <silvio.zimmer@die-kinderwelt.com>2021-04-21 13:45:47 +0300
committerSilvio Zimmer <silvio.zimmer@die-kinderwelt.com>2021-04-21 13:45:47 +0300
commit3e8edcf91acd7ccbff6e4fa8fd81d1f67a3955a3 (patch)
tree3a62db28114044c5869c45aeaae6cd71414b2eab /lib/Migration
parent513b5e38b539e0f16f4cdbe27d91be2d52c60290 (diff)
add option to place signature above quoted text
Signed-off-by: Silvio Zimmer <silvio.zimmer@die-kinderwelt.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/Version1100Date20210421113423.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/Migration/Version1100Date20210421113423.php b/lib/Migration/Version1100Date20210421113423.php
new file mode 100644
index 000000000..54ee74feb
--- /dev/null
+++ b/lib/Migration/Version1100Date20210421113423.php
@@ -0,0 +1,57 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2021 Silvio Zimmer <silvio.zimmer@die-kinderwelt.com>
+ *
+ * @author 2021 Silvio Zimmer <silvio.zimmer@die-kinderwelt.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+namespace OCA\Mail\Migration;
+
+use Closure;
+use OCP\DB\ISchemaWrapper;
+use OCP\Migration\IOutput;
+use OCP\Migration\SimpleMigrationStep;
+
+class Version1100Date20210421113423 extends SimpleMigrationStep
+{
+
+ /**
+ * @param IOutput $output
+ * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
+ * @param array $options
+ *
+ * @return ISchemaWrapper
+ */
+ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options)
+ {
+ /** @var ISchemaWrapper $schema */
+ $schema = $schemaClosure();
+
+ $accountsTable = $schema->getTable('mail_accounts');
+
+ $accountsTable->addColumn('signature_above_quote', 'boolean', [
+ 'notnull' => false,
+ 'default' => false,
+ ]);
+
+ return $schema;
+ }
+}