1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

Merge branch 'ac/ac-1682/data-migrations-for-deprecated-permissions' into ac/ac-1682/ef-migrations

This commit is contained in:
Rui Tome
2023-12-19 15:19:59 +00:00
212 changed files with 14102 additions and 106713 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,55 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.SqliteMigrations.Migrations;
/// <inheritdoc />
public partial class WebAuthnLoginCredentials : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "WebAuthnCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "TEXT", nullable: false),
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
Name = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
PublicKey = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
CredentialId = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
Counter = table.Column<int>(type: "INTEGER", nullable: false),
Type = table.Column<string>(type: "TEXT", maxLength: 20, nullable: true),
AaGuid = table.Column<Guid>(type: "TEXT", nullable: false),
EncryptedUserKey = table.Column<string>(type: "TEXT", maxLength: 2000, nullable: true),
EncryptedPrivateKey = table.Column<string>(type: "TEXT", maxLength: 2000, nullable: true),
EncryptedPublicKey = table.Column<string>(type: "TEXT", maxLength: 2000, nullable: true),
SupportsPrf = table.Column<bool>(type: "INTEGER", nullable: false),
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_WebAuthnCredential", x => x.Id);
table.ForeignKey(
name: "FK_WebAuthnCredential_User_UserId",
column: x => x.UserId,
principalTable: "User",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_WebAuthnCredential_UserId",
table: "WebAuthnCredential",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "WebAuthnCredential");
}
}