File tree Expand file tree Collapse file tree
src/main/java/io/sqlman/version Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ public void upgrade() throws SQLException {
4343 lockup ();
4444 logger .info ("Locked" );
4545 try {
46- logger .info ("Creating version table" );
46+ logger .info ("Creating schema version table" );
4747 create ();
4848
49- logger .info ("Detecting current version" );
49+ logger .info ("Detecting schema current version" );
5050 SqlVersion current = detect ();
51- logger .info ("Current version is {}" , current );
51+ logger .info ("Schema current version is {}" , current );
5252
5353 String version = current != null ? current .getVersion () : null ;
5454 int ordinal = current != null ? current .getSuccess () ? current .getOrdinal () + 1 : current .getOrdinal () : 0 ;
@@ -59,7 +59,7 @@ public void upgrade() throws SQLException {
5959 }
6060
6161 if (sources .hasMoreElements ()) {
62- logger .info ("DataSource upgrading" );
62+ logger .info ("Schema upgrading" );
6363 }
6464
6565 while (sources .hasMoreElements ()) {
@@ -76,7 +76,7 @@ public void upgrade() throws SQLException {
7676 }
7777 }
7878
79- logger .info ("DataSource is up to date" );
79+ logger .info ("Schema is up to date" );
8080 } catch (SQLException ex ) {
8181 throw ex ;
8282 } catch (Exception ex ) {
You can’t perform that action at this time.
0 commit comments