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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Migration/Version30704Date20200626072306.php')
-rw-r--r--lib/Migration/Version30704Date20200626072306.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/lib/Migration/Version30704Date20200626072306.php b/lib/Migration/Version30704Date20200626072306.php
new file mode 100644
index 00000000..5094f3f4
--- /dev/null
+++ b/lib/Migration/Version30704Date20200626072306.php
@@ -0,0 +1,78 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OCA\Richdocuments\Migration;
+
+use Closure;
+use OCP\DB\ISchemaWrapper;
+use OCP\Migration\SimpleMigrationStep;
+use OCP\Migration\IOutput;
+
+class Version30704Date20200626072306 extends SimpleMigrationStep {
+
+ /**
+ * @param IOutput $output
+ * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
+ * @param array $options
+ * @return null|ISchemaWrapper
+ */
+ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
+ /** @var ISchemaWrapper $schema */
+ $schema = $schemaClosure();
+
+ $table = $schema->getTable('richdocuments_wopi');
+
+ if (!$table->hasColumn('template_id')) {
+ $table->addColumn('template_id', 'integer', [
+ 'notnull' => false,
+ 'length' => 4,
+ ]);
+ }
+
+ if (!$table->hasColumn('hide_download')) {
+ $table->addColumn('hide_download', 'boolean', [
+ 'notnull' => true,
+ 'default' => false,
+ ]);
+ }
+
+ if (!$table->hasColumn('share')) {
+ $table->addColumn('share', 'string', [
+ 'notnull' => false,
+ 'length' => 64
+ ]);
+ }
+
+ if (!$table->hasColumn('direct')) {
+ $table->addColumn('direct', 'boolean', [
+ 'notnull' => true,
+ 'default' => false,
+ ]);
+ }
+ if (!$table->hasColumn('is_remote_token')) {
+ $table->addColumn('is_remote_token', 'boolean', [
+ 'notnull' => true,
+ 'default' => false,
+ ]);
+ }
+
+ if (!$table->hasColumn('remote_server')) {
+ $table->addColumn('remote_server', 'string', [
+ 'notnull' => true,
+ 'default' => '',
+ ]);
+
+ }
+ if (!$table->hasColumn('remote_server_token')) {
+ $table->addColumn('remote_server_token', 'string', [
+ 'notnull' => true,
+ 'length' => 32,
+ 'default' => '',
+ ]);
+ }
+
+
+ return $schema;
+ }
+}