I am stuck up in a situation where the database schema present in my SSDT / Database project has some less schema while the production database will have some more schema object. These additional schema object are create by customer only for his own purpose (for e.g maintenance).
in nutshell the SSDT / Database project contains all the schema related to application where as the product / customer environment contains application related schema as well as some more maintenance related schema object
Now i need to modify some of the application related schema object in the SSDT / database project but my worry is when i provide the build to the customer then the default nature of SSDT / database project is the compare the 2 database i.e source (customer database) and Target (SSDT / database project) and drop the object from source which are not present in target. therefore the object created by customer for maintenance purpose would get delete.
so is there any why where i can avoid such a case through SSDT / Database project setting.
Thanks in advance