same happened with me..
Problem was that Actually i deleted my Database table MoviesCast
and made new table and problem was that my last migration was trying to induce the deleted table MoviesCast
in the database.
I Solved it by simply removing all the content of last migration and simply ran Up() & down() method
public override void Up()
{
}
public override void Down()
{
}
then updated the database and simply add new migration