Compare commits

..

No commits in common. "50e45e7fb39201244c8888cd7609b90fdae85ca4" and "b2185dd836b02b357af34e4adf8f7b4185e3edef" have entirely different histories.

4 changed files with 10 additions and 10 deletions

View File

@ -93,7 +93,7 @@ namespace SushiBarDatabaseImplement.Migrations
b.HasKey("Id");
b.ToTable("ListSushi");
b.ToTable("SushiList");
});
modelBuilder.Entity("SushiBarDatabaseImplement.Models.SushiIngredient", b =>

View File

@ -44,7 +44,7 @@ namespace SushiBarDatabaseImplement.Migrations
});
migrationBuilder.CreateTable(
name: "ListSushi",
name: "SushiList",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
@ -54,7 +54,7 @@ namespace SushiBarDatabaseImplement.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_ListSushi", x => x.Id);
table.PrimaryKey("PK_SushiList", x => x.Id);
});
migrationBuilder.CreateTable(
@ -77,9 +77,9 @@ namespace SushiBarDatabaseImplement.Migrations
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_SushiIngredients_ListSushi_SushiId",
name: "FK_SushiIngredients_SushiList_SushiId",
column: x => x.SushiId,
principalTable: "ListSushi",
principalTable: "SushiList",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
@ -108,7 +108,7 @@ namespace SushiBarDatabaseImplement.Migrations
name: "Ingredients");
migrationBuilder.DropTable(
name: "ListSushi");
name: "SushiList");
}
}
}

View File

@ -95,7 +95,7 @@ namespace SushiBarDatabaseImplement.Migrations
b.HasKey("Id");
b.ToTable("ListSushi");
b.ToTable("SushiList");
});
modelBuilder.Entity("SushiBarDatabaseImplement.Models.SushiIngredient", b =>

View File

@ -16,10 +16,10 @@ namespace SushiBarDatabaseImplement.Migrations
column: "SushiId");
migrationBuilder.AddForeignKey(
name: "FK_Orders_ListSushi_SushiId",
name: "FK_Orders_SushiList_SushiId",
table: "Orders",
column: "SushiId",
principalTable: "ListSushi",
principalTable: "SushiList",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
}
@ -28,7 +28,7 @@ namespace SushiBarDatabaseImplement.Migrations
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_Orders_ListSushi_SushiId",
name: "FK_Orders_SushiList_SushiId",
table: "Orders");
migrationBuilder.DropIndex(