Liquibase rollback stop working

HI all, can you please help me with rollback action?

Liquibase Version: 4.24.0
Springboot version: 3.1.0
MySQL DB is created by docker command: docker run --name mysql-test -e MYSQL_ROOT_PASSWORD=password -e MYSQL_USER=mysql -e MYSQL_PASSWORD=mypassword -e MYSQL_DATABASE=gcs -p 3306:3306 -d mysql:latest

I enabled the springboot to migrate DB scripts to MySQL DB during startup and it works. The MySQL DB is populated as expected. But the command liquibase rollback 1.0 stops working even if it returns Liquibase command 'rollback' was executed successfully. and [liquibase.ui] INFO: 0 changesets rolled back..

So I create another MySQL container by using the docker command. The command liquibase rollback 1.0 works as expected after I manually run liquibase update command.