using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Infrastructure.Persistence.Migrations { /// public partial class a3 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "TextColor", table: "MemberGrade", type: "nvarchar(7)", maxLength: 7, nullable: true, comment: "표시 색상"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "TextColor", table: "MemberGrade"); } } }