using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace HotelDataBaseImplement.Migrations { /// public partial class NullMealPlanId : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_Rooms_MealPlans_MealPlanId", table: "Rooms"); migrationBuilder.AlterColumn( name: "MealPlanId", table: "Rooms", type: "int", nullable: true, oldClrType: typeof(int), oldType: "int"); migrationBuilder.AddForeignKey( name: "FK_Rooms_MealPlans_MealPlanId", table: "Rooms", column: "MealPlanId", principalTable: "MealPlans", principalColumn: "Id"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_Rooms_MealPlans_MealPlanId", table: "Rooms"); migrationBuilder.AlterColumn( name: "MealPlanId", table: "Rooms", type: "int", nullable: false, defaultValue: 0, oldClrType: typeof(int), oldType: "int", oldNullable: true); migrationBuilder.AddForeignKey( name: "FK_Rooms_MealPlans_MealPlanId", table: "Rooms", column: "MealPlanId", principalTable: "MealPlans", principalColumn: "Id", onDelete: ReferentialAction.Cascade); } } }