94 lines
3.8 KiB
C#
94 lines
3.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace EonaCat.Logger.LogServer.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitialCreate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Applications",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "INTEGER", nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
Name = table.Column<string>(type: "TEXT", nullable: false),
|
|
ApiKey = table.Column<string>(type: "TEXT", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
IsActive = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Applications", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "LogEntries",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "TEXT", nullable: false),
|
|
Timestamp = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
ApplicationName = table.Column<string>(type: "TEXT", nullable: false),
|
|
ApplicationVersion = table.Column<string>(type: "TEXT", nullable: false),
|
|
Environment = table.Column<string>(type: "TEXT", nullable: false),
|
|
MachineName = table.Column<string>(type: "TEXT", nullable: false),
|
|
Level = table.Column<int>(type: "INTEGER", nullable: false),
|
|
Category = table.Column<string>(type: "TEXT", nullable: false),
|
|
Message = table.Column<string>(type: "TEXT", nullable: false),
|
|
Exception = table.Column<string>(type: "TEXT", nullable: true),
|
|
StackTrace = table.Column<string>(type: "TEXT", nullable: true),
|
|
PropertiesJson = table.Column<string>(type: "TEXT", nullable: true),
|
|
UserId = table.Column<string>(type: "TEXT", nullable: true),
|
|
SessionId = table.Column<string>(type: "TEXT", nullable: true),
|
|
RequestId = table.Column<string>(type: "TEXT", nullable: true),
|
|
CorrelationId = table.Column<string>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_LogEntries", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Applications_Name",
|
|
table: "Applications",
|
|
column: "Name",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_LogEntries_ApplicationName",
|
|
table: "LogEntries",
|
|
column: "ApplicationName");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_LogEntries_Environment",
|
|
table: "LogEntries",
|
|
column: "Environment");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_LogEntries_Level",
|
|
table: "LogEntries",
|
|
column: "Level");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_LogEntries_Timestamp",
|
|
table: "LogEntries",
|
|
column: "Timestamp");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Applications");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "LogEntries");
|
|
}
|
|
}
|
|
}
|