Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop

This commit is contained in:
James Cole
2025-02-05 06:46:35 +01:00
8 changed files with 83 additions and 82 deletions

View File

@@ -52,7 +52,7 @@ return new class () extends Migration {
foreach ($fields as $field) {
Schema::table($table, static function (Blueprint $tableObject) use ($table, $field): void {
// add amount column
if(!Schema::hasColumn($table, $field)) {
if (!Schema::hasColumn($table, $field)) {
$tableObject->decimal($field, 32, 12)->nullable();
}
});