From 958f7968e302ed55e01ba765501bc6318c61f79b Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 29 Oct 2020 15:27:22 +0100 Subject: [PATCH] Adjust further columns - calendarsubscriptions.lastmodified -> not null - external_config.value -> allow null Signed-off-by: Vincent Petry --- apps/dav/lib/Migration/Version1004Date20170825134824.php | 6 ++++++ .../lib/Migration/Version1011Date20200630192246.php | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/apps/dav/lib/Migration/Version1004Date20170825134824.php b/apps/dav/lib/Migration/Version1004Date20170825134824.php index 53c1ebe299..9ba3b18d1d 100644 --- a/apps/dav/lib/Migration/Version1004Date20170825134824.php +++ b/apps/dav/lib/Migration/Version1004Date20170825134824.php @@ -341,6 +341,12 @@ class Version1004Date20170825134824 extends SimpleMigrationStep { ]); $table->setPrimaryKey(['id']); $table->addUniqueIndex(['principaluri', 'uri'], 'calsub_index'); + } else { + $table = $schema->getTable('calendarsubscriptions'); + $table->changeColumn('lastmodified', [ + 'notnull' => false, + 'unsigned' => true, + ]); } if (!$schema->hasTable('schedulingobjects')) { diff --git a/apps/files_external/lib/Migration/Version1011Date20200630192246.php b/apps/files_external/lib/Migration/Version1011Date20200630192246.php index d3aa630d53..934a9e3478 100644 --- a/apps/files_external/lib/Migration/Version1011Date20200630192246.php +++ b/apps/files_external/lib/Migration/Version1011Date20200630192246.php @@ -121,6 +121,12 @@ class Version1011Date20200630192246 extends SimpleMigrationStep { $table->setPrimaryKey(['config_id']); $table->addIndex(['mount_id'], 'config_mount'); $table->addUniqueIndex(['mount_id', 'key'], 'config_mount_key'); + } else { + $table = $schema->getTable('external_config'); + $table->changeColumn('value', [ + 'notnull' => false, + 'length' => 4096, + ]); } if (!$schema->hasTable('external_options')) {