Compare commits

...

2 Commits

Author SHA1 Message Date
50e45e7fb3 Merge branch 'LabWork03' into LabWork03Hard 2023-03-10 18:40:55 +04:00
eaafd9b703 Исправление имен 2023-03-10 16:44:26 +04:00
4 changed files with 10 additions and 10 deletions

View File

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

View File

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

View File

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

View File

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