I was adding a migration in my ASP.NET Core project using EF Core 2.0.
I ran the 'Add-Migration 'migrationName` command in my package manager console.
The migration was successfully added to my migrations folder, however, while trying to update the snapsh...