1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -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,13 +1,12 @@
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 />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc /> /// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder) protected override void Up(MigrationBuilder migrationBuilder)
{ {
@ -53,5 +52,4 @@ namespace Bit.MySqlMigrations.Migrations
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
}
} }

View File

@ -1,13 +1,12 @@
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 />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc /> /// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder) protected override void Up(MigrationBuilder migrationBuilder)
{ {
@ -47,5 +46,4 @@ namespace Bit.PostgresMigrations.Migrations
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
}
} }

View File

@ -1,13 +1,12 @@
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 />
public partial class CreateOpaqueKeyExchangeCredential : Migration
{
/// <inheritdoc /> /// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder) protected override void Up(MigrationBuilder migrationBuilder)
{ {
@ -47,5 +46,4 @@ namespace Bit.SqliteMigrations.Migrations
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
}
} }