aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2024-10-21 18:31:14 -0100
committerMaxence Lange <maxence@artificial-owl.com>2024-11-18 20:11:31 -0100
commit7c04818c5c078fb1dc7c5b79f295fc40a60a6296 (patch)
treec5f30725ab0444ae28551adf16ff1cbd93d57f56 /core
parente73513bdd1f42da656b79bf78d8d3763386d26b1 (diff)
downloadnextcloud-server-7c04818c5c078fb1dc7c5b79f295fc40a60a6296.tar.gz
nextcloud-server-7c04818c5c078fb1dc7c5b79f295fc40a60a6296.zip
feat(user-prefs): iterator instead of array on search
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'core')
-rw-r--r--core/Migrations/Version31000Date20240814184402.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version31000Date20240814184402.php b/core/Migrations/Version31000Date20240814184402.php
index 87b7e93db97..14b32a704be 100644
--- a/core/Migrations/Version31000Date20240814184402.php
+++ b/core/Migrations/Version31000Date20240814184402.php
@@ -38,7 +38,7 @@ class Version31000Date20240814184402 extends SimpleMigrationStep {
$table->addColumn('lazy', Types::SMALLINT, ['notnull' => true, 'default' => 0, 'length' => 1, 'unsigned' => true]);
$table->addColumn('type', Types::SMALLINT, ['notnull' => true, 'default' => 0, 'unsigned' => true]);
$table->addColumn('flags', Types::INTEGER, ['notnull' => true, 'default' => 0, 'unsigned' => true]);
- $table->addColumn('indexed', Types::STRING, ['notnull' => true, 'default' => '', 'length' => 64]);
+ $table->addColumn('indexed', Types::STRING, ['notnull' => false, 'default' => '', 'length' => 64]);
// removing this index from Version13000Date20170718121200
// $table->addIndex(['appid', 'configkey'], 'preferences_app_key');