Compare commits

..

No commits in common. "ce5a97ce458d5efe516624b34ed2ebb2ef033e5f" and "b64f416fc0ea56d195f5b26eba389c255b21c0fd" have entirely different histories.

3 changed files with 3 additions and 9 deletions

View File

@ -39,5 +39,5 @@ class Column extends InformationSchema\Column
} }
}; };
} }
*/
} }

View File

@ -38,5 +38,5 @@ class Column extends Sqlite
} }
}; };
} }
*/
} }

View File

@ -2,8 +2,6 @@
namespace Lean\Console\Lib; namespace Lean\Console\Lib;
use Ulmus\Adapter\SqlAdapterInterface;
class DatabaseMigrations class DatabaseMigrations
{ {
public array $folderList; public array $folderList;
@ -29,11 +27,7 @@ class DatabaseMigrations
continue; continue;
} }
$resolve = $entity::resolveEntity(); $this->entities[$entity] = $entity::resolveEntity();
if ( $resolve->sqlAdapter()->adapter() instanceof SqlAdapterInterface) {
$this->entities[$entity] = $resolve;
}
} }
} }