using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Migrations.AppDb { /// public partial class AddChannelDonationCode : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DonationCode", table: "Channel", type: "nvarchar(7)", maxLength: 7, nullable: true, comment: "후원 코드(4~7자 영문+숫자, 대문자). 1회성 발급, 변경 불가"); migrationBuilder.CreateIndex( name: "IX_Channel_DonationCode", table: "Channel", column: "DonationCode", unique: true, filter: "[DonationCode] IS NOT NULL"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "IX_Channel_DonationCode", table: "Channel"); migrationBuilder.DropColumn( name: "DonationCode", table: "Channel"); } } }