-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#### _ _ _ _ | ||
## | | (_) (_) | | ||
## | | _ __ _ _ _ _| |__ __ _ ___ ___ | ||
## | | | |/ _` | | | | | '_ \ / _` / __|/ _ \ | ||
## | |___| | (_| | |_| | | |_) | (_| \__ \ __/ | ||
## \_____/_|\__, |\__,_|_|_.__/ \__,_|___/\___| | ||
## | | | ||
## |_| | ||
## | ||
## The liquibase.properties file stores properties which do not change often, | ||
## such as database connection information. Properties stored here save time | ||
## and reduce risk of mistyped command line arguments. | ||
## Learn more: https://docs.liquibase.com/concepts/connections/creating-config-properties.html | ||
#### | ||
#### | ||
## Note about relative and absolute paths: | ||
## The liquibase.properties file requires paths for some properties. | ||
## The classpath is the path/to/resources (ex. src/main/resources). | ||
## The changeLogFile path is relative to the classpath. | ||
## The url H2 example below is relative to 'pwd' resource. | ||
#### | ||
# Enter the path for your changelog file. | ||
changeLogFile=docs/db/changelog/db.changelog-master.xml | ||
|
||
#### Enter the Target database 'url' information #### | ||
#liquibase.command.url=jdbc:postgresql://localhost:5432/postgres | ||
|
||
## MSSQL | ||
#liquibase.command.url=jdbc:sqlserver://wlt-dev-pocmssql-sql.database.windows.net:1433;database=wlt-test-sqldb;user=vlnka@wlt-dev-pocmssql-sql;password=9hfi9cBfZRhyUxhTiyA8oDVCAdQvemfvhW8smcavfH;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30; | ||
|
||
# Postgre | ||
liquibase.command.url=jdbc:postgresql://localhost:5432/postgres | ||
|
||
## Oracle | ||
#liquibase.command.url=jdbc:oracle:thin:@10.254.7.5:1521:free | ||
|
||
|
||
# Enter the username for your Target database. | ||
liquibase.command.username: powerauth | ||
|
||
# Enter the password for your Target database. | ||
liquibase.command.password: powerauth |