using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LibraryAPI.Migrations { public partial class ConfigureManyToMany : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "GroupUserAccounts", columns: table => new { GroupId = table.Column(type: "bigint", nullable: false), UserAccountId = table.Column(type: "bigint", nullable: false) }, constraints: table => { table.PrimaryKey("PK_GroupUserAccounts", x => new { x.UserAccountId, x.GroupId }); table.ForeignKey( name: "FK_GroupUserAccounts_Groups_GroupId", column: x => x.GroupId, principalTable: "Groups", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_GroupUserAccounts_Users_UserAccountId", column: x => x.UserAccountId, principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_GroupUserAccounts_GroupId", table: "GroupUserAccounts", column: "GroupId"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "GroupUserAccounts"); } } }