using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
    /// 
    public partial class SecurityEvent : Migration
    {
        /// 
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.CreateTable(
                name: "SecurityEvent",
                columns: table => new
                {
                    Id = table.Column(type: "INTEGER", nullable: false)
                        .Annotation("Sqlite:Autoincrement", true),
                    IpAddress = table.Column(type: "TEXT", nullable: true),
                    RequestMethod = table.Column(type: "TEXT", nullable: true),
                    RequestPath = table.Column(type: "TEXT", nullable: true),
                    UserAgent = table.Column(type: "TEXT", nullable: true),
                    CreatedAt = table.Column(type: "TEXT", nullable: false),
                    CreatedAtUtc = table.Column(type: "TEXT", nullable: false)
                },
                constraints: table =>
                {
                    table.PrimaryKey("PK_SecurityEvent", x => x.Id);
                });
        }
        /// 
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropTable(
                name: "SecurityEvent");
        }
    }
}