mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.SqliteMigrations.Migrations;
|
|||
|
|
|||
|
public partial class AddKeysToDevice : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "EncryptedPrivateKey",
|
|||
|
table: "Device",
|
|||
|
type: "TEXT",
|
|||
|
nullable: true);
|
|||
|
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "EncryptedPublicKey",
|
|||
|
table: "Device",
|
|||
|
type: "TEXT",
|
|||
|
nullable: true);
|
|||
|
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "EncryptedUserKey",
|
|||
|
table: "Device",
|
|||
|
type: "TEXT",
|
|||
|
nullable: true);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "EncryptedPrivateKey",
|
|||
|
table: "Device");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "EncryptedPublicKey",
|
|||
|
table: "Device");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "EncryptedUserKey",
|
|||
|
table: "Device");
|
|||
|
}
|
|||
|
}
|