mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop
This commit is contained in:
@@ -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();
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user