using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EchoHub.Server.Data.Migrations { /// public partial class AddChannelEncryptionEnvelope : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "EncryptionSalt", table: "Channels", type: "TEXT", maxLength: 64, nullable: true); migrationBuilder.AddColumn( name: "WrappedRoomKey", table: "Channels", type: "TEXT", maxLength: 200, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EncryptionSalt", table: "Channels"); migrationBuilder.DropColumn( name: "WrappedRoomKey", table: "Channels"); } } }