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