In Entity Framework Core.
Remove all files from migrations folder.
Type in console
dotnet ef database drop -f -v
dotnet ef migrations add Initial
dotnet ef database update
UPD: Do that only if you don't care about your current persisted data. If you do, use Greg Gum's answer