using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace UbloxSC20.Migrations
{
///
public partial class payload : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Week",
table: "NavigationModel",
newName: "freqId");
migrationBuilder.RenameColumn(
name: "Tow",
table: "NavigationModel",
newName: "SigId");
migrationBuilder.AddColumn(
name: "GnssId",
table: "NavigationModel",
type: "int",
nullable: false,
defaultValue: 0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "GnssId",
table: "NavigationModel");
migrationBuilder.RenameColumn(
name: "freqId",
table: "NavigationModel",
newName: "Week");
migrationBuilder.RenameColumn(
name: "SigId",
table: "NavigationModel",
newName: "Tow");
}
}
}