No table name set on execute migration in Lumen
<?php
return [
'default' => 'external',
'migrations' => 'migrations',
'connections' => [
// your connections
],
];
I found the solution myself!
Just add the name of the table on database config array and it's done!
'migrations' => 'migrations',