File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/onl/netfishers/netshot/database Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 107
107
import org .jasypt .hibernate5 .encryptor .HibernatePBEEncryptorRegistry ;
108
108
import org .slf4j .MarkerFactory ;
109
109
110
+ import liquibase .UpdateSummaryOutputEnum ;
110
111
import liquibase .command .CommandScope ;
111
112
import liquibase .command .core .UpdateCommandStep ;
112
113
import liquibase .command .core .helpers .DbUrlConnectionCommandStep ;
114
+ import liquibase .command .core .helpers .ShowSummaryArgument ;
113
115
import liquibase .database .DatabaseFactory ;
114
116
import liquibase .database .jvm .JdbcConnection ;
115
117
import lombok .extern .slf4j .Slf4j ;
@@ -221,6 +223,7 @@ public static void update() {
221
223
new CommandScope (UpdateCommandStep .COMMAND_NAME )
222
224
.addArgumentValue (DbUrlConnectionCommandStep .DATABASE_ARG , database )
223
225
.addArgumentValue (UpdateCommandStep .CHANGELOG_FILE_ARG , "migration/netshot0.xml" )
226
+ .addArgumentValue (ShowSummaryArgument .SHOW_SUMMARY_OUTPUT , UpdateSummaryOutputEnum .LOG )
224
227
.execute ();
225
228
}
226
229
}
You can’t perform that action at this time.
0 commit comments