using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Migrations.AppDb { /// public partial class AddMemberChatSettings : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsChatAllowInvite", table: "MemberApprove", type: "bit", nullable: false, defaultValue: true, comment: "채팅 초대 수신 허용"); migrationBuilder.AddColumn( name: "IsChatAllowWhisper", table: "MemberApprove", type: "bit", nullable: false, defaultValue: true, comment: "채팅 귓속말 수신 허용"); migrationBuilder.AddColumn( name: "IsChatShowFollowingOnline", table: "MemberApprove", type: "bit", nullable: false, defaultValue: true, comment: "팔로잉 접속 표시"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsChatAllowInvite", table: "MemberApprove"); migrationBuilder.DropColumn( name: "IsChatAllowWhisper", table: "MemberApprove"); migrationBuilder.DropColumn( name: "IsChatShowFollowingOnline", table: "MemberApprove"); } } }