using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ZB.MOM.WW.OtOpcUa.Configuration.Migrations { /// public partial class AddDriverHostStatus : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "DriverHostStatus", columns: table => new { NodeId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), DriverInstanceId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), HostName = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: false), State = table.Column(type: "nvarchar(16)", maxLength: 16, nullable: false), StateChangedUtc = table.Column(type: "datetime2(3)", nullable: false), LastSeenUtc = table.Column(type: "datetime2(3)", nullable: false), Detail = table.Column(type: "nvarchar(1024)", maxLength: 1024, nullable: true) }, constraints: table => { table.PrimaryKey("PK_DriverHostStatus", x => new { x.NodeId, x.DriverInstanceId, x.HostName }); }); migrationBuilder.CreateIndex( name: "IX_DriverHostStatus_LastSeen", table: "DriverHostStatus", column: "LastSeenUtc"); migrationBuilder.CreateIndex( name: "IX_DriverHostStatus_Node", table: "DriverHostStatus", column: "NodeId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "DriverHostStatus"); } } }