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