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 #nullable disable
namespace Bit.MySqlMigrations.Migrations namespace Bit.MySqlMigrations.Migrations;
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration protected override void Up(MigrationBuilder migrationBuilder)
{ {
/// <inheritdoc /> migrationBuilder.CreateTable(
protected override void Up(MigrationBuilder migrationBuilder) name: "OpaqueKeyExchangeCredential",
{ columns: table => new
migrationBuilder.CreateTable( {
name: "OpaqueKeyExchangeCredential", Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
columns: table => new UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
{ CipherConfiguration = table.Column<string>(type: "longtext", nullable: true)
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), .Annotation("MySql:CharSet", "utf8mb4"),
UserId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), CredentialBlob = table.Column<string>(type: "longtext", nullable: true)
CipherConfiguration = table.Column<string>(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"),
.Annotation("MySql:CharSet", "utf8mb4"), EncryptedPublicKey = table.Column<string>(type: "longtext", nullable: true)
CredentialBlob = table.Column<string>(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"),
.Annotation("MySql:CharSet", "utf8mb4"), EncryptedPrivateKey = table.Column<string>(type: "longtext", nullable: true)
EncryptedPublicKey = table.Column<string>(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"),
.Annotation("MySql:CharSet", "utf8mb4"), EncryptedUserKey = table.Column<string>(type: "longtext", nullable: true)
EncryptedPrivateKey = table.Column<string>(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"),
.Annotation("MySql:CharSet", "utf8mb4"), CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false)
EncryptedUserKey = table.Column<string>(type: "longtext", nullable: true) },
.Annotation("MySql:CharSet", "utf8mb4"), constraints: table =>
CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false) {
}, table.PrimaryKey("PK_OpaqueKeyExchangeCredential", x => x.Id);
constraints: table => table.ForeignKey(
{ name: "FK_OpaqueKeyExchangeCredential_User_UserId",
table.PrimaryKey("PK_OpaqueKeyExchangeCredential", x => x.Id); column: x => x.UserId,
table.ForeignKey( principalTable: "User",
name: "FK_OpaqueKeyExchangeCredential_User_UserId", principalColumn: "Id",
column: x => x.UserId, onDelete: ReferentialAction.Cascade);
principalTable: "User", })
principalColumn: "Id", .Annotation("MySql:CharSet", "utf8mb4");
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId", name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential", table: "OpaqueKeyExchangeCredential",
column: "UserId"); column: "UserId");
} }
/// <inheritdoc /> /// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder) protected override void Down(MigrationBuilder migrationBuilder)
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
}
} }
} }

View File

@ -1,51 +1,49 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.PostgresMigrations.Migrations namespace Bit.PostgresMigrations.Migrations;
/// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration protected override void Up(MigrationBuilder migrationBuilder)
{ {
/// <inheritdoc /> migrationBuilder.CreateTable(
protected override void Up(MigrationBuilder migrationBuilder) name: "OpaqueKeyExchangeCredential",
{ columns: table => new
migrationBuilder.CreateTable( {
name: "OpaqueKeyExchangeCredential", Id = table.Column<Guid>(type: "uuid", nullable: false),
columns: table => new UserId = table.Column<Guid>(type: "uuid", nullable: false),
{ CipherConfiguration = table.Column<string>(type: "text", nullable: true),
Id = table.Column<Guid>(type: "uuid", nullable: false), CredentialBlob = table.Column<string>(type: "text", nullable: true),
UserId = table.Column<Guid>(type: "uuid", nullable: false), EncryptedPublicKey = table.Column<string>(type: "text", nullable: true),
CipherConfiguration = table.Column<string>(type: "text", nullable: true), EncryptedPrivateKey = table.Column<string>(type: "text", nullable: true),
CredentialBlob = table.Column<string>(type: "text", nullable: true), EncryptedUserKey = table.Column<string>(type: "text", nullable: true),
EncryptedPublicKey = table.Column<string>(type: "text", nullable: true), CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
EncryptedPrivateKey = table.Column<string>(type: "text", nullable: true), },
EncryptedUserKey = table.Column<string>(type: "text", nullable: true), constraints: table =>
CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false) {
}, table.PrimaryKey("PK_OpaqueKeyExchangeCredential", x => x.Id);
constraints: table => table.ForeignKey(
{ name: "FK_OpaqueKeyExchangeCredential_User_UserId",
table.PrimaryKey("PK_OpaqueKeyExchangeCredential", x => x.Id); column: x => x.UserId,
table.ForeignKey( principalTable: "User",
name: "FK_OpaqueKeyExchangeCredential_User_UserId", principalColumn: "Id",
column: x => x.UserId, onDelete: ReferentialAction.Cascade);
principalTable: "User", });
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OpaqueKeyExchangeCredential_UserId", name: "IX_OpaqueKeyExchangeCredential_UserId",
table: "OpaqueKeyExchangeCredential", table: "OpaqueKeyExchangeCredential",
column: "UserId"); column: "UserId");
} }
/// <inheritdoc /> /// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder) protected override void Down(MigrationBuilder migrationBuilder)
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
}
} }
} }

View File

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