Comments
Sort by recent activity
Thanks, I'll do that. / comments
Thanks, I'll do that.
Found the problem. I had COLLATION set for two of the columns in the table definition. Removed that and it deployed just fine. Originally I didn't have them and didn't have NULL/NOT NULL on every column. When it failed and I looked at the logs I saw NULL/NOT NULL on the columns and the collation stuff. So I added all of that to my code thinking the compare was looking for that stuff. Turns out I should have only added the NULL/NOT NULL stuff. It would be nice if the error message could give something more helpful to point to the issue instead of basically, "Sorry, it failed, go figure out why." At least now I know what to look for if it happens again. / comments
Found the problem. I had COLLATION set for two of the columns in the table definition. Removed that and it deployed just fine. Originally I didn't have them and didn't have NULL/NOT NULL on ever...