1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

fix: dotnet format

This commit is contained in:
Ike Kottlowski 2025-03-26 09:00:55 -04:00
parent 9164bb1d9a
commit 06bd75bfe4
No known key found for this signature in database
GPG Key ID: C86308E3DCA6D76F
3 changed files with 123 additions and 129 deletions

View File

@ -1,57 +1,55 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.MySqlMigrations.Migrations
namespace Bit.MySqlMigrations.Migrations;
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
protected override void Up(MigrationBuilder migrationBuilder)
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "OpaqueKeyExchangeCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
CipherConfiguration = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
CredentialBlob = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedPublicKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedPrivateKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedUserKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
CreationDate = table.Column<DateTime>(type: "datetime(6)", 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);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable(
name: "OpaqueKeyExchangeCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
CipherConfiguration = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
CredentialBlob = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedPublicKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedPrivateKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
EncryptedUserKey = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"),
CreationDate = table.Column<DateTime>(type: "datetime(6)", 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);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential",
column: "UserId");
}
migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
}

View File

@ -1,51 +1,49 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.PostgresMigrations.Migrations
namespace Bit.PostgresMigrations.Migrations;
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
protected override void Up(MigrationBuilder migrationBuilder)
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "OpaqueKeyExchangeCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "uuid", nullable: false),
UserId = table.Column<Guid>(type: "uuid", 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: "timestamp with time zone", 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.CreateTable(
name: "OpaqueKeyExchangeCredential",
columns: table => new
{
Id = table.Column<Guid>(type: "uuid", nullable: false),
UserId = table.Column<Guid>(type: "uuid", 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: "timestamp with time zone", 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");
}
migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
}

View File

@ -1,51 +1,49 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.SqliteMigrations.Migrations
namespace Bit.SqliteMigrations.Migrations;
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
protected override void Up(MigrationBuilder migrationBuilder)
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
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.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");
}
migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential");
}
}