Activity overview
Latest activity by ACM13
I was having a similar problem, and I found that in setting up my dev DB, I'd created __MigrationLog et al. by accident. I think that was confusing SCA into thinking that it needed to run the baseline (see the Deployment Behavior section here). Running the following script on my DB fixed me right up: <div>DROP VIEW __MigrationLogCurrent;</div><div>DROP TABLE __SchemaSnapshot;</div><div>DROP TABLE __MigrationLog;</div> / comments
I was having a similar problem, and I found that in setting up my dev DB, I'd created __MigrationLog et al. by accident. I think that was confusing SCA into thinking that it needed to run the base...