In a legacy app, most string properties can\'t be null and need to have a default value of string.empty.
I know it\'s possible to do this with migrations, but I\'m l
Now the answer is Yes:
AddColumn("[table name]", "[column name]", c => c.Boolean(nullable: false, defaultValue: false));