//
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AliasServerDb.Migrations
{
///
public partial class AddAuthLogClientHeader : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Client",
table: "AuthLogs",
type: "character varying(100)",
maxLength: 100,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Client",
table: "AuthLogs");
}
}
}