-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquibase.properties
55 lines (46 loc) · 2.06 KB
/
liquibase.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#### _ _ _ _
## | | (_) (_) |
## | | _ __ _ _ _ _| |__ __ _ ___ ___
## | | | |/ _` | | | | | '_ \ / _` / __|/ _ \
## | |___| | (_| | |_| | | |_) | (_| \__ \ __/
## \_____/_|\__, |\__,_|_|_.__/ \__,_|___/\___|
## | |
## |_|
##
## 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://www.liquibase.org/documentation/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=main.xml
#### Primary Database Information ####
# The primary database is the database you want to use when doing an update, or for performing comparisons.
# Enter the URL of the source database
url: jdbc:postgresql://localhost:5432/workshopuser1
# Enter the username for your source database.
username: postgres
# Enter the password for your source database.
password: Liquibas3Rocks!
classpath: ./postgresql-42.2.23.jar
#### Target Database Information####
## The target database is the database you want to use to compare to your source database.
# Enter URL for the target database
referenceUrl: jdbc:postgresql://localhost:5432/model1
#Enter the username for your target database
referenceUsername: postgres
# Enter the password for your target database
referencePassword: yourpassword
#### Liquibase Pro Key Information####
# Enter your Liquibase Pro key here.
# If you don't have one, visit https://download.liquibase.org/liquibase-pro-trial-request-form/ to start a free trial!
#liquibaseProLicenseKey: <PROVIDE YOUR KEY OR SECRET>
#logLevel: DEBUG
liquibase.hub.mode=off