server/util/PostgresMigrations/Migrations/20251009152612_CreatingSecretVersionTables.cs
cd-bitwarden 2965b499e9
[SM-1591] Adding SecretVersion table to server (#6406)
* Adding SecretVersion table to server

* making the names singular not plural for new table

* removing migration

* fixing migration

* Adding indexes for serviceacct and orguserId

* indexes for sqllite

* fixing migrations

* adding indexes to secretVeriosn.sql

* tests

* removing tests

* adding GO
2025-10-16 15:35:14 -04:00

70 lines
2.7 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.PostgresMigrations.Migrations;
/// <inheritdoc />
public partial class CreatingSecretVersionTables : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "SecretVersion",
columns: table => new
{
Id = table.Column<Guid>(type: "uuid", nullable: false),
SecretId = table.Column<Guid>(type: "uuid", nullable: false),
Value = table.Column<string>(type: "text", nullable: false),
VersionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
EditorServiceAccountId = table.Column<Guid>(type: "uuid", nullable: true),
EditorOrganizationUserId = table.Column<Guid>(type: "uuid", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_SecretVersion", x => x.Id);
table.ForeignKey(
name: "FK_SecretVersion_OrganizationUser_EditorOrganizationUserId",
column: x => x.EditorOrganizationUserId,
principalTable: "OrganizationUser",
principalColumn: "Id",
onDelete: ReferentialAction.SetNull);
table.ForeignKey(
name: "FK_SecretVersion_Secret_SecretId",
column: x => x.SecretId,
principalTable: "Secret",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_SecretVersion_ServiceAccount_EditorServiceAccountId",
column: x => x.EditorServiceAccountId,
principalTable: "ServiceAccount",
principalColumn: "Id",
onDelete: ReferentialAction.SetNull);
});
migrationBuilder.CreateIndex(
name: "IX_SecretVersion_EditorOrganizationUserId",
table: "SecretVersion",
column: "EditorOrganizationUserId");
migrationBuilder.CreateIndex(
name: "IX_SecretVersion_EditorServiceAccountId",
table: "SecretVersion",
column: "EditorServiceAccountId");
migrationBuilder.CreateIndex(
name: "IX_SecretVersion_SecretId",
table: "SecretVersion",
column: "SecretId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "SecretVersion");
}
}