I created a schema in our SQL Server 2012 database called [Auth]
. Then tables and triggers were created as well. Later I was informed that the schema naming standard is lowercase, so it should be [auth]
. I renamed the schema in the database project, and all related references. However, the Schema Compare feature doesn't detect the difference, and isn't renaming the schema.
This affects our Entity Framework objects, as they should be 'auth'
.
Is there a way to make the database project see a case change as a change, and update the database?