using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CompanyManagment.EFCore.Migrations
{
///
public partial class addshiftdurationtoleave : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "HasShiftDuration",
table: "Leave",
type: "bit",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "ShiftDuration",
table: "Leave",
type: "nvarchar(30)",
maxLength: 30,
nullable: false,
defaultValue: "");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "HasShiftDuration",
table: "Leave");
migrationBuilder.DropColumn(
name: "ShiftDuration",
table: "Leave");
}
}
}