From 691d9bda1d85d66f878e18a5c27fc3d17674fa83 Mon Sep 17 00:00:00 2001 From: Georgi Hristov Date: Mon, 27 Jul 2020 09:12:44 +0200 Subject: [PATCH] [fix] create db tables with all columns --- tests/ModelUnionTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ModelUnionTest.php b/tests/ModelUnionTest.php index b4951a221..65291a20c 100644 --- a/tests/ModelUnionTest.php +++ b/tests/ModelUnionTest.php @@ -17,7 +17,8 @@ class ModelUnionTest extends \atk4\schema\PhpunitTestCase private $init_db = [ 'client' => [ - ['name' => 'Vinny'], + // allow of migrator to create all columns + ['name' => 'Vinny', 'surname' => null, 'order' => null], ['name' => 'Zoe'], ], 'invoice' => [