Merge branch 'fronkdev' into 'master'

Added taxcode to Vatrate

See merge request fronk/thetool!270
This commit is contained in:
Frank Schubert
2024-02-27 13:38:22 +00:00
4 changed files with 18 additions and 5 deletions
@@ -24,6 +24,7 @@ final class CreateVatTables extends AbstractMigration
$table->addColumn("account", "integer", ["null" => false]);
$table->addColumn("legacy_account", "integer", ["null" => true, "default" => null]);
$table->addColumn("rate", "decimal", ["null" => false, "precision" => 6, "scale" => 2]);
$table->addColumn("taxcode", "integer", ["null" => true, "default" => null]);
$table->addColumn("invoice_text", "text", ["null" => true, "default" => null]);
$table->addColumn("create_by", "integer", ["null" => false]);
$table->addColumn("edit_by", "integer", ["null" => false]);