Creating Your First Liquibase Migration Using SQL

Поделиться
HTML-код
  • Опубликовано: 3 янв 2025

Комментарии • 9

  • @donglaizhang7895
    @donglaizhang7895 4 года назад +3

    Hi Steve, thanks for your video!

  • @maneeshjagarlamudi1162
    @maneeshjagarlamudi1162 4 года назад +1

    Hi Steve , I saw your video for setup of liquibase, I followed same procedure,but still I'm facing issue

    • @liquibase7511
      @liquibase7511  4 года назад

      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/

  • @prasadthevlog
    @prasadthevlog Год назад

    Hi. How to restore table backup files using Liquibase command or settings please?

  • @rahulkhode126
    @rahulkhode126 4 года назад

    can we use liquibase dtabase for liquidjs template

  • @vasudevansivalingam8494
    @vasudevansivalingam8494 2 года назад

    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,

    • @liquibase7511
      @liquibase7511  2 года назад

      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.

  • @vasudevansivalingam8494
    @vasudevansivalingam8494 2 года назад

    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.

    • @liquibase7511
      @liquibase7511  2 года назад

      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.