using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BLAIzor.Migrations { /// public partial class logger : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Logs", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Timestamp = table.Column(type: "datetime2", nullable: false), Severity = table.Column(type: "nvarchar(max)", nullable: false), Message = table.Column(type: "nvarchar(max)", nullable: false), Details = table.Column(type: "nvarchar(max)", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Logs", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Logs"); } } }