You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.1 KiB
74 lines
2.1 KiB
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"); |
|
} |
|
}
|
|
|