I know you can add liquibase to a project where the database already exists. I’m in a weird situation where my predecessor added liquibase to a project that had an existing database but he didn’t add the script to create the tables. if I want to have a local database for development I have to setup the database as it was before liquibase was implemented. Can I add a liquibase script to do that now?
Ex:
- Original Project manually setup Table XYZ with columns A, B, and C.
- Liquibase was added that added column D and dropped column C.
Now I want to add a liquibase script that creates Table XYZ with columns A, B, and C to run locally only (can’t run in QA or Prod) but have it run prior to the other liquibase scripts.