1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
bitwarden/util/SqliteMigrations/Migrations/20250325193532_CreateOpaqueKeyExchangeEntityAndProcedures.cs
2025-03-25 15:43:09 -04:00

62 lines
2.4 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.SqliteMigrations.Migrations
{
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeEntityAndProcedures : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "DiscountId",
table: "Provider",
type: "TEXT",
nullable: true);
migrationBuilder.CreateTable(
name: "OpaqueKeyExchangeCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "TEXT", nullable: false),
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
CipherConfiguration = table.Column<string>(type: "TEXT", nullable: true),
CredentialBlob = table.Column<string>(type: "TEXT", nullable: true),
EncryptedPublicKey = table.Column<string>(type: "TEXT", nullable: true),
EncryptedPrivateKey = table.Column<string>(type: "TEXT", nullable: true),
EncryptedUserKey = table.Column<string>(type: "TEXT", nullable: true),
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_OpaqueKeyExchangeCredential", x => x.Id);
table.ForeignKey(
name: "FK_OpaqueKeyExchangeCredential_User_UserId",
column: x => x.UserId,
principalTable: "User",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
migrationBuilder.DropColumn(
name: "DiscountId",
table: "Provider");
}
}
}