mirror of
https://github.com/bitwarden/server
synced 2025-12-21 18:53:41 +00:00
[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
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user