Added legacy_account in Vatrate
This commit is contained in:
@@ -21,6 +21,7 @@ final class CreateVatTables extends AbstractMigration
|
||||
$table->addColumn("vatgroup_id", "integer", ["null" => false]);
|
||||
$table->addColumn("area", "enum", ["null" => false, "values" => "domestic,eu,other"]);
|
||||
$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("invoice_text", "text", ["null" => true, "default" => null]);
|
||||
$table->addColumn("create_by", "integer", ["null" => false]);
|
||||
|
||||
Reference in New Issue
Block a user