We started using DbUp for my current project. We have a growing list of scripts.
We are using SQL Server.
We did create an 'initial.sql' to create all the initial tables and data.
Many include table rebuilds to add columns at the index we prefer.
Is there a way to get to a logical checkpoint e.g. '2.0' point in the App where it is stable and would want to allow that to be a starting point for the next phase of the app to avoid running a ton of scripts spanning months/years of changes?
Thanks in advance,