mirror of
https://github.com/bitwarden/server.git
synced 2025-01-18 21:11:21 +01:00
2d891b396a
* Add SQL files * Add SQL Server migration * Add Core entity * Add Dapper repository * Add EF repository * Add EF migrations * Save OrganizationInstallation during GetLicense invocation * Run dotnet format
58 lines
2.2 KiB
C#
58 lines
2.2 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.SqliteMigrations.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class AddTable_OrganizationInstallation : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "OrganizationInstallation",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
InstallationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OrganizationInstallation", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationInstallation_Installation_InstallationId",
|
|
column: x => x.InstallationId,
|
|
principalTable: "Installation",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationInstallation_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationInstallation_InstallationId",
|
|
table: "OrganizationInstallation",
|
|
column: "InstallationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationInstallation_OrganizationId",
|
|
table: "OrganizationInstallation",
|
|
column: "OrganizationId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "OrganizationInstallation");
|
|
}
|
|
}
|