29 lines
734 B
C#
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|