I am making a tweak to my table.
The scaffold is pretty straight forward, it's limiting the number of characters for some string columns.
I am presented with this error
String or binary data would be truncated in table '', column 'DetailedDescription'. Truncated value: ''
I tried to do an update-database -force and it still won't let me
Migration Details
AddColumn("dbo.Tests", "AdditionalInstructions", c => c.String(maxLength: 2000));
AlterColumn("dbo.Tests", "DetailedDescription", c => c.String(maxLength: 500));
AlterColumn("dbo.Tests", "VenueName", c => c.String(maxLength: 100));