using Microsoft.EntityFrameworkCore.Migrations; namespace Repository.Migrations { public partial class AddTableParamLogUserName : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "UserName", table: "ParamLogs", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "UserName", table: "ParamLogs"); } } }