mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-24 14:00:35 -05:00
31 lines
800 B
C#
31 lines
800 B
C#
// <auto-generated/>
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace AliasServerDb.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddAuthLogClientHeader : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Client",
|
|
table: "AuthLogs",
|
|
type: "character varying(100)",
|
|
maxLength: 100,
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Client",
|
|
table: "AuthLogs");
|
|
}
|
|
}
|
|
}
|