Merge branch 'fronkdev' into 'master'

andom-tec changes

See merge request fronk/thetool!843
This commit is contained in:
Frank Schubert
2024-12-24 11:39:50 +00:00
24 changed files with 5518 additions and 298 deletions
@@ -33,7 +33,7 @@ final class CreateVatTables extends AbstractMigration
$table->create();
$table = $this->table("Product");
$table->addColumn("vatgroup_id", "integer", ["null" => false, "default" => 1]);
$table->addColumn("vatgroup_id", "integer", ["null" => false, "default" => 1, "after" => "price_setup"]);
$table->save();
}