Skip to content

Commit

Permalink
fix(db): set correct dbms short name postgresql
Browse files Browse the repository at this point in the history
# Issue

The index `index_app_metrics` was not created on PostgreSQL leading to bad performance.

# Fix

The correct `DBMS/shortname` for PosgreSQL is  `postgresql` as [documented](https://docs.liquibase.com/start/tutorials/home.html)
  • Loading branch information
silvestre committed Nov 25, 2024
1 parent b15a587 commit 2755c1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ databaseChangeLog:
- changeSet:
id: 3
author: tanmoypal
dbms: postgres
dbms: postgresql
logicalFilePath: /var/vcap/packages/eventgenerator/dataaggregator.db.changelog.yml
changes:
- createIndex:
Expand Down

0 comments on commit 2755c1e

Please sign in to comment.