BackendSpoofingDetected/UbloxSC20/Migrations/20241119082430_updateFreqId.cs
2025-03-25 10:01:22 +07:00

29 lines
734 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace UbloxSC20.Migrations
{
/// <inheritdoc />
public partial class updateFreqId : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "freqId",
table: "NavigationModel",
newName: "FreqId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "FreqId",
table: "NavigationModel",
newName: "freqId");
}
}
}