During development of my application I made an error with naming and it caused issues with generating database changes. To fix this I attempted to manually change the name of the indexes in the entity and delete the parts of the DB changelog that related to this error.
Subsequently I realise this was a mistake, because I now have a gap in my database change log which means when I deploy the application to another server, some of the database actions are not carried out automatically.
Is there a way I can re-create the log for my application to be representative of all the entities that currently exist, and be free to create new log entries for any new entries I have?
Many thanks!