diff --git a/CHANGELOG.md b/CHANGELOG.md index 814103a2..6e929aae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## 0.2.101 + +- [setup] fixing an issue with migration on pgsql + + ## 0.2.100 (alpha 2.1) - [setup] it is now possible to create an account using ./occ diff --git a/Makefile b/Makefile index d3afeaad..5f46762a 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ cert_dir=$(HOME)/.nextcloud/certificates github_account=nextcloud branch=master codecov_token_dir=$(HOME)/.nextcloud/codecov_token -version+=0.2.100 +version+=0.2.101 diff --git a/appinfo/info.xml b/appinfo/info.xml index cf8946ef..8f261e7c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ **🕸 Open standards:** We use the established ActivityPub standard! ]]> - 0.2.100 + 0.2.101 agpl Maxence Lange Julius Härtl diff --git a/lib/Migration/Version0002Date20190717000001.php b/lib/Migration/Version0002Date20190717000001.php index 7864e31b..b2c9f2fd 100644 --- a/lib/Migration/Version0002Date20190717000001.php +++ b/lib/Migration/Version0002Date20190717000001.php @@ -82,7 +82,7 @@ class Version0002Date20190717000001 extends SimpleMigrationStep { $table->addColumn( 'resized_copy', Type::TEXT, [ - 'notnull' => true + 'notnull' => false ] ); }