I have created bool field in Database model
Here is it
public virtual bool IsActive { get; set; }
I need to set default value 'false' to column
So every new entry will have false value in this column
How I can make this via codefirst in migrations?