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