Skip to content

Commit

Permalink
Review sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil committed Sep 20, 2023
1 parent 78ce531 commit 76d40ba
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</not>
</preConditions>
<comment>Create a new sequence ns_operation_afs_seq</comment>
<createSequence sequenceName="ns_operation_afs_seq" startValue="1" incrementBy="1" cacheSize="20" minValue="1" />
<createSequence sequenceName="ns_operation_afs_seq" startValue="1" incrementBy="1" cacheSize="20" />
</changeSet>

<changeSet id="2" logicalFilePath="powerauth-nextstep/1.4.x/20230324-init-db.xml" author="Lubos Racansky">
Expand Down
42 changes: 42 additions & 0 deletions liquibase.properties
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

0 comments on commit 76d40ba

Please sign in to comment.