'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 have to use "using btree" feature in order to attain the desired performance,



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source