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;
use Ulmus\Adapter\SqlAdapterInterface;
class DatabaseMigrations
{
public array $folderList;
@ -29,11 +27,7 @@ class DatabaseMigrations
continue;
}
$resolve = $entity::resolveEntity();
if ( $resolve->sqlAdapter()->adapter() instanceof SqlAdapterInterface) {
$this->entities[$entity] = $resolve;
}
$this->entities[$entity] = $entity::resolveEntity();
}
}