Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 4, 2024
1 parent dd7f996 commit 7d5d505
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/TestSupport/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ public function getEnvironmentSetUp($app)
$table->id();
$table->string('name');
$table->enum('enum', ['value1', 'value2']);
$table->multiPolygon('multiPolygon');
if (method_exists($table, 'multiPolygon')) {
$table->multiPolygon('multiPolygon');
}
$table->point('point');
$table->time('time');
});
Expand Down

0 comments on commit 7d5d505

Please sign in to comment.