Activity overview
Latest activity by tjnorman57
The rename at the bottom worked for me.
Josh Head (Support)
Dec 11, 2024, 21:24 GMT
Thanks Tom. So, there are a couple of things you can try. One is to set up a script configuration to run the scripts on a per-script basis. The documentation for that is here: https://documentation.red-gate.com/fd/script-configuration-248284640.html, more specifically using the "should execute" option: https://documentation.red-gate.com/fd/should-execute-248284771.html There's also an option to Skip Executing Migrations which can be used in conjunction with cherry pick. You could also convert the repeatable migration to a versioned migration by renaming the repeatable script to follow the versioned migration naming convention (e.g., V2__Your_Repeatable_Script.sql ), you can control its execution order by assigning an appropriate version number that ensures it runs before the dependent versioned script. Let me know if you have any questions about the above options.
Thanks,
Josh Head Product Support Engineer
/ comments
The rename at the bottom worked for me.
Josh Head (Support)
Dec 11, 2024, 21:24 GMT
Thanks Tom. So, there are a couple of things you can try. One is to set up a script configuration to run the sc...