Files
Backend-Api/AccountMangement.Infrastructure.EFCore/Migrations/20240704073907_AddIsDoneRequestToTaskManagerTable.cs
2024-07-10 20:25:54 +03:30

30 lines
823 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AccountMangement.Infrastructure.EFCore.Migrations
{
/// <inheritdoc />
public partial class AddIsDoneRequestToTaskManagerTable : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsDoneRequest",
table: "TasksManager",
type: "bit",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsDoneRequest",
table: "TasksManager");
}
}
}