-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquibase.properties
32 lines (24 loc) · 1.38 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
# liquibase.properties file for the Liquibase Pro Implementation Guide
# For details regarding any settings in this file, see Liquibase Parameters at
# https://docs.liquibase.com/parameters/home.html
# Specifies the root changelog file to execute.
liquibase.command.changelogFile: sqlcode_by_objects_schema/rootchangelog.yaml
#Name of the default schema to use for the database connection. If defaultSchemaName
# is set, then objects do not have to be fully qualified.
liquibase.command.defaultSchemaName=dvdrental
#The liquibase-schema-name global parameter is a string that specifies the schema
# to use for the creation of Liquibase objects, like the DATABASECHANGELOG and
# DATABASECHANGELOGLOCK tracking tables.
# See https://docs.liquibase.com/parameters/liquibase-schema-name.html
liquibase.liquibaseSchemaName=public
#Sends logging messages of what Liquibase does during runtime to this file.
liquibase.logFile=logs/liquibase_json_out.json
# Sets the format of log output to the console or to log files.
liquibase.logFormat=JSON_PRETTY
# Controls the amount of messages that are generated when running Liquibase commands.
# The official log levels are: OFF, SEVERE, WARNING, INFO, FINE.
liquibase.logLevel=INFO
# Enables or disables all reports at the global level.
liquibase.reports.enabled=true
# Specifies the file path to the report file at the global level.
liquibase.reports.path=reports