Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. Run a new postgres instance container on your local machine


Code Block
docker run --name postgres -p 5432:5432 -d

...

 -e POSTGRES_DB=cpsdb -e POSTGRES_USER=cps -e POSTGRES_PASSWORD=cps

...

 postgres:13.2-alpine


2. Checkout honolulu branch and cd to "cps-ri" 3. Run "status" liquibase script to observe that your database is not up to date and see the list of all changes set that need to be applied for honolulu


Code Block
mvn clean compile org.liquibase:liquibase-maven-plugin:4.3.1:status

...

 -Dliquibase.url=jdbc:postgresql://localhost:5432/cpsdb

...

 -Dliquibase.username=cps

...

 -Dliquibase.password=cps

...

 -Dliquibase.changeLogFile=changelog/changelog-master.yaml


4. Run "update" liquibase script to apply all pending changes set and bring your database to honolulu version


Code Block
mvn clean compile org.liquibase:liquibase-maven-plugin:4.3.1:update

...

 -Dliquibase.url=jdbc:postgresql://localhost:5432/cpsdb

...

 -Dliquibase.username=cps

...

 -Dliquibase.password=cps

...

 -Dliquibase.changeLogFile=changelog/changelog-master.yaml


5. Run "status" liquibase script to validate that your db is now up to date for honolulu (Run step 3 command) 6. Check out master branch (or the branch having your liquibase fix) and cd to "cps-ri" 7. Run "status" liquibase script to see the list of all change sets that need to be applied for istambul (if any) (Run step 3 command)

...