Comments
1 comment
-
There's a comparison option to control that behaviour (https://documentation.red-gate.com/display/SOC5/Change+the+comparison+options) - you want to turn off 'Disable DDL triggers during deployment'.
Add comment
Please sign in to leave a comment.
PRINT N'Disabling DDL triggers'
GO
DISABLE TRIGGER ALL ON DATABASE
GO
at the start of the migration script and then enables them afterwards.