You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java
+52-52Lines changed: 52 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -253,6 +253,26 @@ public class FlywayProperties {
253
253
*/
254
254
privatebooleanvalidateOnMigrate = true;
255
255
256
+
/**
257
+
* Prefix of placeholders in migration scripts.
258
+
*/
259
+
privateStringscriptPlaceholderPrefix = "FP__";
260
+
261
+
/**
262
+
* Suffix of placeholders in migration scripts.
263
+
*/
264
+
privateStringscriptPlaceholderSuffix = "__";
265
+
266
+
/**
267
+
* Whether Flyway should execute SQL within a transaction.
268
+
*/
269
+
privatebooleanexecuteInTransaction = true;
270
+
271
+
/**
272
+
* Loggers Flyway should use.
273
+
*/
274
+
privateString[] loggers = { "slf4j" };
275
+
256
276
/**
257
277
* Whether to batch SQL statements when executing them. Requires Flyway Teams.
258
278
*/
@@ -352,26 +372,6 @@ public class FlywayProperties {
352
372
*/
353
373
privateBooleandetectEncoding;
354
374
355
-
/**
356
-
* Prefix of placeholders in migration scripts.
357
-
*/
358
-
privateStringscriptPlaceholderPrefix = "FP__";
359
-
360
-
/**
361
-
* Suffix of placeholders in migration scripts.
362
-
*/
363
-
privateStringscriptPlaceholderSuffix = "__";
364
-
365
-
/**
366
-
* Whether Flyway should execute SQL within a transaction.
367
-
*/
368
-
privatebooleanexecuteInTransaction = true;
369
-
370
-
/**
371
-
* Loggers Flyway should use.
372
-
*/
373
-
privateString[] loggers = { "slf4j" };
374
-
375
375
publicbooleanisEnabled() {
376
376
returnthis.enabled;
377
377
}
@@ -692,6 +692,38 @@ public void setValidateOnMigrate(boolean validateOnMigrate) {
0 commit comments