I am trying to use liquibase maven plugin to rollback my database to a specific date.
I am using following command:
mvn clean install -Denv=dev -Dgoal=rollback -Drollbackdate=‘2021-05-20 07:15:22’ -Dusername=svcSQLLiquibase -Dpassword=*******
but it gives me this error:
Error parsing rollbackDate: Unparseable date: “2021-05-20 07:15:22”
[ERROR] Date must match pattern: MMM d, y
i have t ried following formats:
20-MAY-2021
2021-05-20
no it did not work either
ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.3.5:rollback (WEB_DB_RESET) on project liquibase: Error setting up or running Liquibase: Error parsing rollbackDate: Unparseable date: “2021-05-20T07:15:22”
[ERROR] Date must match pattern: MMM d, y