Authinator/Migrations/20230601024525_08CE75A7-A8A8-4B34-9DC4-DFA5960EBB1E.cs
2023-06-01 06:14:24 +02:00

39 lines
1.1 KiB
C#

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