Since migrations don't take any notice of the Auto properties (per the rescinded answer above), even in .Net/EF 8, the best way to do this is within the OnModelCreating
method for the Data Context:
modelBuilder.Entity<Revision>().Property(e => e.IsReleased).HasDefaultValue(true);