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

Format EF files

This commit is contained in:
Matt Bishop 2025-03-25 16:24:12 -07:00
parent fafa6a5d7a
commit be773d2ecb
No known key found for this signature in database
3 changed files with 215 additions and 221 deletions

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.MySqlMigrations.Migrations namespace Bit.MySqlMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration public partial class OrganizationIntegrations : Migration
{ {
@ -88,4 +87,3 @@ namespace Bit.MySqlMigrations.Migrations
name: "OrganizationIntegration"); name: "OrganizationIntegration");
} }
} }
}

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.PostgresMigrations.Migrations namespace Bit.PostgresMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration public partial class OrganizationIntegrations : Migration
{ {
@ -83,4 +82,3 @@ namespace Bit.PostgresMigrations.Migrations
name: "OrganizationIntegration"); name: "OrganizationIntegration");
} }
} }
}

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.SqliteMigrations.Migrations namespace Bit.SqliteMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration public partial class OrganizationIntegrations : Migration
{ {
@ -83,4 +82,3 @@ namespace Bit.SqliteMigrations.Migrations
name: "OrganizationIntegration"); name: "OrganizationIntegration");
} }
} }
}