Category "liquibase-sql"

How to create Liquibase changeset for below Postgres index creation statement - "using btree"

create index if not exists department_index on department using btree (department_id); How can I create a Liquibase changeset for the above Postgresql? I h

Liquibase context in changeset

The text below is from liquibase's contexts page https://docs.liquibase.com/concepts/changelogs/attributes/contexts.html By default, a database update runs all