using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.MySqlMigrations.Migrations; public partial class AddKeysToDevice : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "EncryptedPrivateKey", table: "Device", type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "EncryptedPublicKey", table: "Device", type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "EncryptedUserKey", table: "Device", type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EncryptedPrivateKey", table: "Device"); migrationBuilder.DropColumn( name: "EncryptedPublicKey", table: "Device"); migrationBuilder.DropColumn( name: "EncryptedUserKey", table: "Device"); } }