You can change table name on Human class:
[Table("Humans")]
public class Human
{
...
}
Other way is to use Fluent API:
modelBuilder.Entity<Human>()
.ToTable("Humans");
Similary you can use ColumnAttribute or HasColumnName method to change the name of column.