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