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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2021-11-29 21:43:22 +0300
committernachoparker <nacho@ownyourbits.com>2021-11-29 21:46:08 +0300
commit5a404c00a9e42ea9f8b2e4fa00b50e6182d925c1 (patch)
tree0c90e76e7d3ecba5963647e6f0769425c6d5ac89
parent0a4f8c10afb196b990b659c17fb32cfd5d991d46 (diff)
ncp-previewgenerator: fix app enable in NC22v1.44.5
Signed-off-by: nachoparker <nacho@ownyourbits.com>
-rw-r--r--changelog.md4
-rw-r--r--ncp-previewgenerator/ncp-previewgenerator-nc21/lib/Migration/Version020200Date20190608205303.php2
2 files changed, 4 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index 0bf5eaf3..126ade88 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v1.44.4](https://github.com/nextcloud/nextcloudpi/commit/418cb47) (2021-11-19) ncp-web: fix spurious characters in power menu
+[v1.44.5](https://github.com/nextcloud/nextcloudpi/commit/0e15dc9) (2021-11-29) ncp-previewgenerator: fix app enable in NC22
+
+[v1.44.4](https://github.com/nextcloud/nextcloudpi/commit/0a4f8c1) (2021-11-19) ncp-web: fix spurious characters in power menu
[v1.44.3](https://github.com/nextcloud/nextcloudpi/commit/4717eb3) (2021-11-18) tweak ncc command
diff --git a/ncp-previewgenerator/ncp-previewgenerator-nc21/lib/Migration/Version020200Date20190608205303.php b/ncp-previewgenerator/ncp-previewgenerator-nc21/lib/Migration/Version020200Date20190608205303.php
index e539d530..7c264730 100644
--- a/ncp-previewgenerator/ncp-previewgenerator-nc21/lib/Migration/Version020200Date20190608205303.php
+++ b/ncp-previewgenerator/ncp-previewgenerator-nc21/lib/Migration/Version020200Date20190608205303.php
@@ -44,7 +44,7 @@ class Version020200Date20190608205303 extends SimpleMigrationStep {
if (!$table->hasColumn('locked')) {
$table->addColumn('locked', Types::BOOLEAN, [
- 'notnull' => true,
+ 'notnull' => false,
'default' => 0,
]);
}