Fix: nulls

This commit is contained in:
Juan Pablo Vial
2024-12-18 20:12:01 -03:00
parent 46cdf74c52
commit 2ab3c25e96

View File

@ -499,6 +499,9 @@ use Phinx\Seed\AbstractSeed;
}
$value = "'{$value}'";
}
if ($value === null) {
$value = 'null';
}
$output []= "\t\t\t\t'{$key}' => {$value},";
}
$output []= "\t\t\t],";