1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -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,91 +1,89 @@
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 OrganizationIntegrations : Migration
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration protected override void Up(MigrationBuilder migrationBuilder)
{ {
/// <inheritdoc /> migrationBuilder.CreateTable(
protected override void Up(MigrationBuilder migrationBuilder) name: "OrganizationIntegration",
{ columns: table => new
migrationBuilder.CreateTable( {
name: "OrganizationIntegration", Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
columns: table => new OrganizationId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
{ Type = table.Column<int>(type: "int", nullable: false),
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), Configuration = table.Column<string>(type: "longtext", nullable: true)
OrganizationId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), .Annotation("MySql:CharSet", "utf8mb4"),
Type = table.Column<int>(type: "int", nullable: false), CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false),
Configuration = table.Column<string>(type: "longtext", nullable: true) RevisionDate = table.Column<DateTime>(type: "datetime(6)", nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"), },
CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false), constraints: table =>
RevisionDate = table.Column<DateTime>(type: "datetime(6)", nullable: false) {
}, table.PrimaryKey("PK_OrganizationIntegration", x => x.Id);
constraints: table => table.ForeignKey(
{ name: "FK_OrganizationIntegration_Organization_OrganizationId",
table.PrimaryKey("PK_OrganizationIntegration", x => x.Id); column: x => x.OrganizationId,
table.ForeignKey( principalTable: "Organization",
name: "FK_OrganizationIntegration_Organization_OrganizationId", principalColumn: "Id",
column: x => x.OrganizationId, onDelete: ReferentialAction.Cascade);
principalTable: "Organization", })
principalColumn: "Id", .Annotation("MySql:CharSet", "utf8mb4");
onDelete: ReferentialAction.Cascade);
})
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateTable( migrationBuilder.CreateTable(
name: "OrganizationIntegrationConfiguration", name: "OrganizationIntegrationConfiguration",
columns: table => new columns: table => new
{ {
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
OrganizationIntegrationId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"), OrganizationIntegrationId = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
EventType = table.Column<int>(type: "int", nullable: false), EventType = table.Column<int>(type: "int", nullable: false),
Configuration = table.Column<string>(type: "longtext", nullable: true) Configuration = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"), .Annotation("MySql:CharSet", "utf8mb4"),
Template = table.Column<string>(type: "longtext", nullable: true) Template = table.Column<string>(type: "longtext", nullable: true)
.Annotation("MySql:CharSet", "utf8mb4"), .Annotation("MySql:CharSet", "utf8mb4"),
CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false), CreationDate = table.Column<DateTime>(type: "datetime(6)", nullable: false),
RevisionDate = table.Column<DateTime>(type: "datetime(6)", nullable: false) RevisionDate = table.Column<DateTime>(type: "datetime(6)", nullable: false)
}, },
constraints: table => constraints: table =>
{ {
table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id); table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id);
table.ForeignKey( table.ForeignKey(
name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegration~", name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegration~",
column: x => x.OrganizationIntegrationId, column: x => x.OrganizationIntegrationId,
principalTable: "OrganizationIntegration", principalTable: "OrganizationIntegration",
principalColumn: "Id", principalColumn: "Id",
onDelete: ReferentialAction.Cascade); onDelete: ReferentialAction.Cascade);
}) })
.Annotation("MySql:CharSet", "utf8mb4"); .Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId", name: "IX_OrganizationIntegration_OrganizationId",
table: "OrganizationIntegration", table: "OrganizationIntegration",
column: "OrganizationId"); column: "OrganizationId");
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId_Type", name: "IX_OrganizationIntegration_OrganizationId_Type",
table: "OrganizationIntegration", table: "OrganizationIntegration",
columns: new[] { "OrganizationId", "Type" }, columns: new[] { "OrganizationId", "Type" },
unique: true); unique: true);
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegration~", name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegration~",
table: "OrganizationIntegrationConfiguration", table: "OrganizationIntegrationConfiguration",
column: "OrganizationIntegrationId"); column: "OrganizationIntegrationId");
} }
/// <inheritdoc /> /// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder) protected override void Down(MigrationBuilder migrationBuilder)
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegrationConfiguration"); name: "OrganizationIntegrationConfiguration");
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegration"); name: "OrganizationIntegration");
}
} }
} }

View File

@ -1,86 +1,84 @@
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 OrganizationIntegrations : Migration
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration protected override void Up(MigrationBuilder migrationBuilder)
{ {
/// <inheritdoc /> migrationBuilder.CreateTable(
protected override void Up(MigrationBuilder migrationBuilder) name: "OrganizationIntegration",
{ columns: table => new
migrationBuilder.CreateTable( {
name: "OrganizationIntegration", Id = table.Column<Guid>(type: "uuid", nullable: false),
columns: table => new OrganizationId = table.Column<Guid>(type: "uuid", nullable: false),
{ Type = table.Column<int>(type: "integer", nullable: false),
Id = table.Column<Guid>(type: "uuid", nullable: false), Configuration = table.Column<string>(type: "text", nullable: true),
OrganizationId = table.Column<Guid>(type: "uuid", nullable: false), CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
Type = table.Column<int>(type: "integer", nullable: false), RevisionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
Configuration = table.Column<string>(type: "text", nullable: true), },
CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), constraints: table =>
RevisionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false) {
}, table.PrimaryKey("PK_OrganizationIntegration", x => x.Id);
constraints: table => table.ForeignKey(
{ name: "FK_OrganizationIntegration_Organization_OrganizationId",
table.PrimaryKey("PK_OrganizationIntegration", x => x.Id); column: x => x.OrganizationId,
table.ForeignKey( principalTable: "Organization",
name: "FK_OrganizationIntegration_Organization_OrganizationId", principalColumn: "Id",
column: x => x.OrganizationId, onDelete: ReferentialAction.Cascade);
principalTable: "Organization", });
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable( migrationBuilder.CreateTable(
name: "OrganizationIntegrationConfiguration", name: "OrganizationIntegrationConfiguration",
columns: table => new columns: table => new
{ {
Id = table.Column<Guid>(type: "uuid", nullable: false), Id = table.Column<Guid>(type: "uuid", nullable: false),
OrganizationIntegrationId = table.Column<Guid>(type: "uuid", nullable: false), OrganizationIntegrationId = table.Column<Guid>(type: "uuid", nullable: false),
EventType = table.Column<int>(type: "integer", nullable: false), EventType = table.Column<int>(type: "integer", nullable: false),
Configuration = table.Column<string>(type: "text", nullable: true), Configuration = table.Column<string>(type: "text", nullable: true),
Template = table.Column<string>(type: "text", nullable: true), Template = table.Column<string>(type: "text", nullable: true),
CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
RevisionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false) RevisionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
}, },
constraints: table => constraints: table =>
{ {
table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id); table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id);
table.ForeignKey( table.ForeignKey(
name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegratio~", name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegratio~",
column: x => x.OrganizationIntegrationId, column: x => x.OrganizationIntegrationId,
principalTable: "OrganizationIntegration", principalTable: "OrganizationIntegration",
principalColumn: "Id", principalColumn: "Id",
onDelete: ReferentialAction.Cascade); onDelete: ReferentialAction.Cascade);
}); });
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId", name: "IX_OrganizationIntegration_OrganizationId",
table: "OrganizationIntegration", table: "OrganizationIntegration",
column: "OrganizationId"); column: "OrganizationId");
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId_Type", name: "IX_OrganizationIntegration_OrganizationId_Type",
table: "OrganizationIntegration", table: "OrganizationIntegration",
columns: new[] { "OrganizationId", "Type" }, columns: new[] { "OrganizationId", "Type" },
unique: true); unique: true);
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegratio~", name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegratio~",
table: "OrganizationIntegrationConfiguration", table: "OrganizationIntegrationConfiguration",
column: "OrganizationIntegrationId"); column: "OrganizationIntegrationId");
} }
/// <inheritdoc /> /// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder) protected override void Down(MigrationBuilder migrationBuilder)
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegrationConfiguration"); name: "OrganizationIntegrationConfiguration");
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegration"); name: "OrganizationIntegration");
}
} }
} }

View File

@ -1,86 +1,84 @@
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 OrganizationIntegrations : Migration
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class OrganizationIntegrations : Migration protected override void Up(MigrationBuilder migrationBuilder)
{ {
/// <inheritdoc /> migrationBuilder.CreateTable(
protected override void Up(MigrationBuilder migrationBuilder) name: "OrganizationIntegration",
{ columns: table => new
migrationBuilder.CreateTable( {
name: "OrganizationIntegration", Id = table.Column<Guid>(type: "TEXT", nullable: false),
columns: table => new OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
{ Type = table.Column<int>(type: "INTEGER", nullable: false),
Id = table.Column<Guid>(type: "TEXT", nullable: false), Configuration = table.Column<string>(type: "TEXT", nullable: true),
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false), CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
Type = table.Column<int>(type: "INTEGER", nullable: false), RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
Configuration = table.Column<string>(type: "TEXT", nullable: true), },
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false), constraints: table =>
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false) {
}, table.PrimaryKey("PK_OrganizationIntegration", x => x.Id);
constraints: table => table.ForeignKey(
{ name: "FK_OrganizationIntegration_Organization_OrganizationId",
table.PrimaryKey("PK_OrganizationIntegration", x => x.Id); column: x => x.OrganizationId,
table.ForeignKey( principalTable: "Organization",
name: "FK_OrganizationIntegration_Organization_OrganizationId", principalColumn: "Id",
column: x => x.OrganizationId, onDelete: ReferentialAction.Cascade);
principalTable: "Organization", });
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable( migrationBuilder.CreateTable(
name: "OrganizationIntegrationConfiguration", name: "OrganizationIntegrationConfiguration",
columns: table => new columns: table => new
{ {
Id = table.Column<Guid>(type: "TEXT", nullable: false), Id = table.Column<Guid>(type: "TEXT", nullable: false),
OrganizationIntegrationId = table.Column<Guid>(type: "TEXT", nullable: false), OrganizationIntegrationId = table.Column<Guid>(type: "TEXT", nullable: false),
EventType = table.Column<int>(type: "INTEGER", nullable: false), EventType = table.Column<int>(type: "INTEGER", nullable: false),
Configuration = table.Column<string>(type: "TEXT", nullable: true), Configuration = table.Column<string>(type: "TEXT", nullable: true),
Template = table.Column<string>(type: "TEXT", nullable: true), Template = table.Column<string>(type: "TEXT", nullable: true),
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false), CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false) RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
}, },
constraints: table => constraints: table =>
{ {
table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id); table.PrimaryKey("PK_OrganizationIntegrationConfiguration", x => x.Id);
table.ForeignKey( table.ForeignKey(
name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegration_OrganizationIntegrationId", name: "FK_OrganizationIntegrationConfiguration_OrganizationIntegration_OrganizationIntegrationId",
column: x => x.OrganizationIntegrationId, column: x => x.OrganizationIntegrationId,
principalTable: "OrganizationIntegration", principalTable: "OrganizationIntegration",
principalColumn: "Id", principalColumn: "Id",
onDelete: ReferentialAction.Cascade); onDelete: ReferentialAction.Cascade);
}); });
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId", name: "IX_OrganizationIntegration_OrganizationId",
table: "OrganizationIntegration", table: "OrganizationIntegration",
column: "OrganizationId"); column: "OrganizationId");
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegration_OrganizationId_Type", name: "IX_OrganizationIntegration_OrganizationId_Type",
table: "OrganizationIntegration", table: "OrganizationIntegration",
columns: new[] { "OrganizationId", "Type" }, columns: new[] { "OrganizationId", "Type" },
unique: true); unique: true);
migrationBuilder.CreateIndex( migrationBuilder.CreateIndex(
name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegrationId", name: "IX_OrganizationIntegrationConfiguration_OrganizationIntegrationId",
table: "OrganizationIntegrationConfiguration", table: "OrganizationIntegrationConfiguration",
column: "OrganizationIntegrationId"); column: "OrganizationIntegrationId");
} }
/// <inheritdoc /> /// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder) protected override void Down(MigrationBuilder migrationBuilder)
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegrationConfiguration"); name: "OrganizationIntegrationConfiguration");
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "OrganizationIntegration"); name: "OrganizationIntegration");
}
} }
} }