Files
Backend-Api/AccountMangement.Infrastructure.EFCore/Migrations/20240908171608_addFirstTimeCreationToAssign.cs

30 lines
815 B
C#

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