I have a spring boot app with liquibase folder structure as below.
db/
├─ changes/
│ ├─ sql/
│ │ ├─ prc_existing_to_be_deleted.sql
│ │ ├─ prc_newly_added.sql
│ ├─ stored-procs-changelog.xml
├─ changelog.xml
changelog.xmlfor storing all the changes in liquibasestored-procs-changelog.xmlfor storing the stored procedure changelogsprc_existing_to_be_deleted.sqlstored procedure that is already existingprc_newly_added.sqlstored procedure that is going to be added newly.
My question here is - will liquibase automatically delete the stored procedure in prc_existing_to_be_deleted.sql and update its tables once I delete the file and rerun the app and everything is good? If not what is the right way to delete the stored procedure in that file.