Compare commits
2 Commits
b64f416fc0
...
ce5a97ce45
Author | SHA1 | Date | |
---|---|---|---|
ce5a97ce45 | |||
ea82d8dd08 |
@ -39,5 +39,5 @@ class Column extends InformationSchema\Column
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
*/
|
||||
}
|
@ -38,5 +38,5 @@ class Column extends Sqlite
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
*/
|
||||
}
|
@ -2,6 +2,8 @@
|
||||
|
||||
namespace Lean\Console\Lib;
|
||||
|
||||
use Ulmus\Adapter\SqlAdapterInterface;
|
||||
|
||||
class DatabaseMigrations
|
||||
{
|
||||
public array $folderList;
|
||||
@ -27,7 +29,11 @@ class DatabaseMigrations
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->entities[$entity] = $entity::resolveEntity();
|
||||
$resolve = $entity::resolveEntity();
|
||||
|
||||
if ( $resolve->sqlAdapter()->adapter() instanceof SqlAdapterInterface) {
|
||||
$this->entities[$entity] = $resolve;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user