BackendSpoofingDetected/UbloxSC20/Migrations/20241015042217_NavigationMessage.cs

39 lines
1.3 KiB
C#
Raw Normal View History

2025-03-25 10:01:22 +07:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace UbloxSC20.Migrations
{
/// <inheritdoc />
public partial class NavigationMessage : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "NavigationModel",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
SvId = table.Column<int>(type: "int", nullable: false),
Week = table.Column<int>(type: "int", nullable: false),
Tow = table.Column<int>(type: "int", nullable: false),
NavigationMessage = table.Column<string>(type: "nvarchar(max)", nullable: false),
Timestamp = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_NavigationModel", x => x.Id);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "NavigationModel");
}
}
}