-
My folder structure is like this:
I want to roll back to a specific version such as the state after executing Script0002 - Default feed.sql. How can I do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @devstress, I'll assume that you are using Embedded resource scripts. So they that library is working is by comparing currently executing version against the version schema stored in the DbUp journal table. In order to revert the chenges from |
Beta Was this translation helpful? Give feedback.
Hi @devstress,
I'll assume that you are using Embedded resource scripts. So they that library is working is by comparing currently executing version against the version schema stored in the DbUp journal table. In order to revert the chenges from
Scripts\Script0003 - Settings.sql
andScripts\Script0004 - Transform data.sql
you need to remove them wither by removing the file or by removing them as an Embedded resource.At the moment there is no manual way to remove them like in EF. In futre I can write a tool to do that.