Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
a784697d
Commit
a784697d
authored
May 09, 2019
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16737 from Johnny Lim
* gh-16737: Polish FlywayProperties
parents
40e1c19b
1548fb65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
FlywayProperties.java
...framework/boot/autoconfigure/flyway/FlywayProperties.java
+6
-6
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java
View file @
a784697d
...
...
@@ -229,13 +229,13 @@ public class FlywayProperties {
* Whether to batch SQL statements when executing them. Requires Flyway Pro or Flyway
* Enterprise.
*/
private
Boolean
batch
=
null
;
private
Boolean
batch
;
/**
* File to which the SQL statements of a migration dry run should be output. Requires
* Flyway Pro or Flyway Enterprise.
*/
private
File
dryRunOutput
=
null
;
private
File
dryRunOutput
;
/**
* Rules for the built-in error handling to override specific SQL states and error
...
...
@@ -252,18 +252,18 @@ public class FlywayProperties {
* Whether to enable support for Oracle SQL*Plus commands. Requires Flyway Pro or
* Flyway Enterprise.
*/
private
Boolean
oracleSqlplus
=
null
;
private
Boolean
oracleSqlplus
;
/**
* Whether to stream SQL migra
r
ions when executing them. Requires Flyway Pro or Flyway
* Whether to stream SQL migra
t
ions when executing them. Requires Flyway Pro or Flyway
* Enterprise.
*/
private
Boolean
stream
=
null
;
private
Boolean
stream
;
/**
* File name prefix for undo SQL migrations. Requires Flyway Pro or Flyway Enterprise.
*/
private
String
undoSqlMigrationPrefix
=
null
;
private
String
undoSqlMigrationPrefix
;
public
boolean
isEnabled
()
{
return
this
.
enabled
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment