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,
Hey Vasudevan! Thank you for reaching out with your comment. If you have questions like these the best place to share them is on our community forum at forum.liquibase.com.
create index if not exists employee_index on employee(emp_id, (emp_first_name|| ' ' ||emp_last_name)); I'm able to use the above statement in Postgres, I want to have it in my Liquibase changeset. I need to combine the first and last names as above in the index since it gives better performance. I was told that I can't deviate from it.
Hey Vasudevan! Thank you for reaching out with your comment. If you have questions like these the best place to share them is on our community forum at forum.liquibase.com.
Hi Steve, thanks for your video!
Hi Steve , I saw your video for setup of liquibase, I followed same procedure,but still I'm facing issue
Hi Maneesh! Could you post the issue you are facing on our forum? That way our Community Developer Advocate can take a look. forum.liquibase.org/
Hi. How to restore table backup files using Liquibase command or settings please?
can we use liquibase dtabase for liquidjs template
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,
Hey Vasudevan! Thank you for reaching out with your comment. If you have questions like these the best place to share them is on our community forum at forum.liquibase.com.
create index if not exists employee_index
on employee(emp_id, (emp_first_name|| ' ' ||emp_last_name));
I'm able to use the above statement in Postgres, I want to have it in my Liquibase changeset. I need to combine the first and last names as above in the index since it gives better performance. I was told that I can't deviate from it.
Hey Vasudevan! Thank you for reaching out with your comment. If you have questions like these the best place to share them is on our community forum at forum.liquibase.com.