20260205091913_a3.cs 828 B

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