| 12345678910111213141516171819202122232425 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace GreenTree.Strohrmann.ERP.Domain.Migrations
- {
- public partial class CraftEmployee_Hotfix_2 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddForeignKey(
- table: "CraftEmployees",
- name: "FK_CraftEmployees_Crafts_CraftId",
- column: "CraftId",
- principalTable: "Crafts",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropForeignKey(
- table: "CraftEmployees",
- name: "FK_CraftEmployees_Crafts_CraftId");
- }
- }
- }
|