Authinator/Migrations/20230601012412_41A84365-F764-4EE5-9FA5-B219DE00478B.cs
2023-06-01 06:14:24 +02:00

30 lines
769 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Authinator.Migrations
{
/// <inheritdoc />
public partial class _41A84365F7644EE59FA5B219DE00478B : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "Enabled",
table: "ACLs",
type: "INTEGER",
nullable: false,
defaultValue: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Enabled",
table: "ACLs");
}
}
}