Update database schema display (#9708)

* Update database schema display

* handle missing migrations table
This commit is contained in:
Tony Murray
2019-01-22 06:47:07 -06:00
committed by GitHub
parent 45e0e5e19a
commit 8ce81f2423
4 changed files with 24 additions and 4 deletions

View File

@@ -678,7 +678,7 @@ class IRCBot
$schema_version = $versions['db_schema'];
$version = substr($versions['local_sha'], 0, 7);
$msg = $this->config['project_name_version'].', Version: '.$version.', DB schema: #'.$schema_version.', PHP: '.PHP_VERSION;
$msg = $this->config['project_name_version'].', Version: '.$version.', DB schema: '.$schema_version.', PHP: '.PHP_VERSION;
return $this->respond($msg);
}//end _version()