This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathliquibase.properties
49 lines (41 loc) · 2.07 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
#### _ _ _ _
## | | (_) (_) |
## | | _ __ _ _ _ _| |__ __ _ ___ ___
## | | | |/ _` | | | | | '_ \ / _` / __|/ _ \
## | |___| | (_| | |_| | | |_) | (_| \__ \ __/
## \_____/_|\__, |\__,_|_|_.__/ \__,_|___/\___|
## | |
## |_|
##
## 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: changelog/master.xml
#### Enter the Target database 'url' and driver information ####
driver: oracle.jdbc.OracleDriver
classpath: .config/ojdbc8.jar
url: jdbc:oracle:thin:@127.0.0.1:1521/XEPDB1
# Enter the username and password for your Target database.
username: LB_VERSION_CONTROL_PERFECTION
# If you don't want to store username and password in file you have fewe options:
## choose Liquibase pro and store those data in secure place using environment variables
## when starting Liquibase command add additional parameters to your command e.g liquibase --password:[your password] --usernmae:[your username] update
## don't push liquibase.properties file to your repository. Allow people to mhave their own, local properties files
password: SuperDiff1cu1tPa$$word
defaultSchemaName: LB_VERSION_CONTROL_PERFECTION
# Enter the name of log file produced when you use logLevel e.g. DEBUG or INFO
logfile: liquibase_log.log
logLevel: INFO
#name of output SQL file produced when you use e.g UpdateSQL command to preview changes
outputfile=sql_preview.sql
liquibase.hub.mode=off