Liquibase MySql Rename Table column Issue

Hi everyone , I am very new to Liquibase.

 

Using mysql DB. The problem here is whenever I altered the mysql db just for renaming column name, Liquibase is generating the xml like below.

 

 
       
           
       
   
   
       
   

 

It seems droping the column and adding new column. Due to this I am loosing entire data.

 

But I just renamed the column name from TST_PASSWORD  to TST_PWD. Liquibase have to generate 

renameColumn. I am pretty confused with this. I am putting the alter sql statement below 

 

ALTER TABLE Y5_LOGIN CHANGE TST_PASSWORD TST_PWD varchar(200) NOT NULL;

 

 

Looking for a solution for this.

 

 

Hi ,  I also have the same issue. Seems like it is the problem with Liquibase.