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