using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Api.Migrations { /// public partial class ChangeModelsNamespace : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_TemperatureLogs_Devices_DeviceId", table: "TemperatureLogs"); migrationBuilder.AlterColumn( name: "DeviceId", table: "TemperatureLogs", type: "INTEGER", nullable: false, defaultValue: 0, oldClrType: typeof(int), oldType: "INTEGER", oldNullable: true); migrationBuilder.AddForeignKey( name: "FK_TemperatureLogs_Devices_DeviceId", table: "TemperatureLogs", column: "DeviceId", principalTable: "Devices", principalColumn: "Id", onDelete: ReferentialAction.Cascade); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_TemperatureLogs_Devices_DeviceId", table: "TemperatureLogs"); migrationBuilder.AlterColumn( name: "DeviceId", table: "TemperatureLogs", type: "INTEGER", nullable: true, oldClrType: typeof(int), oldType: "INTEGER"); migrationBuilder.AddForeignKey( name: "FK_TemperatureLogs_Devices_DeviceId", table: "TemperatureLogs", column: "DeviceId", principalTable: "Devices", principalColumn: "Id"); } } }