Authinator/Migrations/20230529020954_02A5FFA6-D336-4CB6-B7DE-3BACD30101F0.cs
2023-06-01 06:14:24 +02:00

30 lines
771 B
C#

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