Julian50
Julian50

Reputation: 2582

SSDT Disable renaming - refactor log

I use SSDT for my database. My constraint is continuous delivery. So I can't do renaming at all, it will break compatiblity with previous (running) version of the DAL. Is there a way to set SSDT project in this way, to avoid refactor ? Thank you.

Upvotes: 2

Views: 1137

Answers (1)

Ed Elliott
Ed Elliott

Reputation: 6856

You can delete the refactor log in your pre build but you can do continuous delivery with renames you just need to make your changes in a non breaking way and phase your changes until your apps have been updated.

Have a read of this:

https://www.simple-talk.com/sql/database-delivery/non-breaking-online-database-deployments/

Ed

Upvotes: 2

Related Questions