Skip to content

Commit f780439

Browse files
committed
Improve Liquibase Documenatation and fix identation
1 parent 903e3ab commit f780439

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseProperties.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,22 @@ public class LiquibaseProperties {
5454
private String defaultSchema;
5555

5656
/**
57-
* Liquibase database schema.
57+
* Schema to use for Liquibase objects.
5858
*/
5959
private String liquibaseSchema;
6060

6161
/**
62-
* Liquibase tablespace.
62+
* Tablespace to use for Liquibase objects.
6363
*/
6464
private String liquibaseTablespace;
6565

6666
/**
67-
* Database changelog table.
67+
* Name of table to use for tracking change history.
6868
*/
6969
private String databaseChangeLogTable;
7070

7171
/**
72-
* Database changelog lock table.
72+
* Name of table to use for tracking concurrent Liquibase usage.
7373
*/
7474
private String databaseChangeLogLockTable;
7575

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -566,10 +566,10 @@ content into your application. Rather, pick only the properties that you need.
566566
spring.liquibase.check-change-log-location=true # Whether to check that the change log location exists.
567567
spring.liquibase.contexts= # Comma-separated list of runtime contexts to use.
568568
spring.liquibase.default-schema= # Default database schema.
569-
spring.liquibase.liquibase-schema= # Liquibase database schema.
570-
spring.liquibase.liquibase-tablespace= # Liquibase tablespace.
571-
spring.liquibase.database-change-log-table= # Database changelog table.
572-
spring.liquibase.database-change-log-lock-table= # Database changelog lock table.
569+
spring.liquibase.liquibase-schema= # Schema to use for Liquibase objects.
570+
spring.liquibase.liquibase-tablespace= # Tablespace to use for Liquibase objects.
571+
spring.liquibase.database-change-log-table= # Name of table to use for tracking change history.
572+
spring.liquibase.database-change-log-lock-table= # Name of table to use for tracking concurrent Liquibase usage.
573573
spring.liquibase.drop-first=false # Whether to first drop the database schema.
574574
spring.liquibase.enabled=true # Whether to enable Liquibase support.
575575
spring.liquibase.labels= # Comma-separated list of runtime labels to use.

0 commit comments

Comments
 (0)