I am trying to do a migration for my database to add a column. I set up the migration and everything looks good. I ran the command and it grabbed the right migration and ran it into the database, yet it is not showing up in the database.
My Migration:
using System; using Microsoft.EntityFrameworkCore.Migrations; namespace Mudman.Data.Migrations { public partial class AttachedFileFileCategory : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<string>( name: "FileCategory", table: "AttachedFile", type: "nvarchar(max)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FileCategory", table: "AttachedFile"); } } }
my terminal of the commands:
The Database:

