diff options
author | Vincent Petry <vincent@nextcloud.com> | 2020-10-29 15:27:22 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-09 12:13:33 +0100 |
commit | 0d42d996d117b295f881ece6d55e59910e5d8f1b (patch) | |
tree | a048619789370db18da04e9d2a30662e1497e7b9 /apps/files_external | |
parent | b9836398ccddc8ec8212eb97d917dfb9b7240546 (diff) | |
download | nextcloud-server-0d42d996d117b295f881ece6d55e59910e5d8f1b.tar.gz nextcloud-server-0d42d996d117b295f881ece6d55e59910e5d8f1b.zip |
Adjust further columns
- calendarsubscriptions.lastmodified -> not null
- external_config.value -> allow null
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Migration/Version1011Date20200630192246.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_external/lib/Migration/Version1011Date20200630192246.php b/apps/files_external/lib/Migration/Version1011Date20200630192246.php index d3aa630d532..934a9e34783 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')) { |