mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Remove Unused Auto Properties (#2580)
* Correct Auto Navigation Property * Add Needed Migration
This commit is contained in:
@ -0,0 +1,74 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Bit.PostgresMigrations.Migrations;
|
||||
|
||||
public partial class FixNavigationProperties : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_CollectionUsers_User_UserId",
|
||||
table: "CollectionUsers");
|
||||
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_GroupUser_User_UserId",
|
||||
table: "GroupUser");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_GroupUser_UserId",
|
||||
table: "GroupUser");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_CollectionUsers_UserId",
|
||||
table: "CollectionUsers");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "UserId",
|
||||
table: "GroupUser");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "UserId",
|
||||
table: "CollectionUsers");
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<Guid>(
|
||||
name: "UserId",
|
||||
table: "GroupUser",
|
||||
type: "uuid",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<Guid>(
|
||||
name: "UserId",
|
||||
table: "CollectionUsers",
|
||||
type: "uuid",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_GroupUser_UserId",
|
||||
table: "GroupUser",
|
||||
column: "UserId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_CollectionUsers_UserId",
|
||||
table: "CollectionUsers",
|
||||
column: "UserId");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_CollectionUsers_User_UserId",
|
||||
table: "CollectionUsers",
|
||||
column: "UserId",
|
||||
principalTable: "User",
|
||||
principalColumn: "Id");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_GroupUser_User_UserId",
|
||||
table: "GroupUser",
|
||||
column: "UserId",
|
||||
principalTable: "User",
|
||||
principalColumn: "Id");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user