20260205091913_a3.cs 738 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Infrastructure.Infrastructure.Persistence.Migrations;
  4. /// <inheritdoc />
  5. public partial class a3 : Migration
  6. {
  7. /// <inheritdoc />
  8. protected override void Up(MigrationBuilder migrationBuilder)
  9. {
  10. migrationBuilder.AddColumn<string>(
  11. name: "TextColor",
  12. table: "MemberGrade",
  13. type: "nvarchar(7)",
  14. maxLength: 7,
  15. nullable: true,
  16. comment: "표시 색상");
  17. }
  18. /// <inheritdoc />
  19. protected override void Down(MigrationBuilder migrationBuilder)
  20. {
  21. migrationBuilder.DropColumn(
  22. name: "TextColor",
  23. table: "MemberGrade");
  24. }
  25. }