checkDBTables method

FutureOr<bool> checkDBTables()

Implementation

FutureOr<bool> checkDBTables() {
  if (!_checkTables) {
    _log.warning("Ignoring check of DB tables for $this.");
    return true;
  }

  _checkTables = false;

  _log.info("Checking DB tables for $this> loading tables schemes...");

  var repositorySchemes = getRepositoriesSchemes();

  return repositorySchemes.resolveMapped(_checkDBTablesImpl);
}