using System; using Microsoft.EntityFrameworkCore.Migrations; namespace Repository.Migrations { public partial class AddStatisticsTable : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "StatisticsLogs", columns: table => new { Id = table.Column(nullable: false), Timestamp = table.Column(nullable: false), TraceState = table.Column(nullable: false), RequstType = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_StatisticsLogs", x => x.Id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "StatisticsLogs"); } } }