Skip to content

Commit

Permalink
[fix] create db tables with all columns
Browse files Browse the repository at this point in the history
  • Loading branch information
georgehristov committed Jul 27, 2020
1 parent 9f95593 commit 691d9bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ModelUnionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => [
Expand Down

0 comments on commit 691d9bd

Please sign in to comment.