diff --git a/changelog.md b/changelog.md index 015ea01b31..b408ee6975 100644 --- a/changelog.md +++ b/changelog.md @@ -10,9 +10,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). - #9327 - [Issue 9713](https://github.com/firefly-iii/firefly-iii/issues/9713) (Many decimal points in amounts) reported by @memo-567 - [Issue 9736](https://github.com/firefly-iii/firefly-iii/issues/9736) (Wrong `finalAccountBalance` result) reported by @gthbusrr +- #9737 - [Issue 9745](https://github.com/firefly-iii/firefly-iii/issues/9745) (Type mismatch in period overview) reported by @electrofloat - [Issue 9747](https://github.com/firefly-iii/firefly-iii/issues/9747) (Data entry issues with exchange rates) reported by @Azmodeszer - [Issue 9751](https://github.com/firefly-iii/firefly-iii/issues/9751) (Net worth changes since 6.2 update) reported by @ahmaddxb +- #9754 - [Issue 9762](https://github.com/firefly-iii/firefly-iii/issues/9762) (Piggy bank show: start/target date not displayed) reported by @Simeam - Various other balance related fixes. diff --git a/database/migrations/2024_11_30_075826_multi_piggy.php b/database/migrations/2024_11_30_075826_multi_piggy.php index 7a59159f8b..56639a463e 100644 --- a/database/migrations/2024_11_30_075826_multi_piggy.php +++ b/database/migrations/2024_11_30_075826_multi_piggy.php @@ -46,9 +46,7 @@ return new class () extends Migration { } Schema::table('piggy_banks', static function (Blueprint $table): void { // 2. make column nullable. - if (!Schema::hasColumn('piggy_banks', 'account_id')) { - $table->unsignedInteger('account_id')->nullable()->change(); - } + $table->unsignedInteger('account_id')->nullable()->change(); }); Schema::table('piggy_banks', static function (Blueprint $table): void { // 3. add currency