xxxxxxxxxx
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Salary",
table: "Employee",
type: "int",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "IsPf",
table: "Employee",
type: "bit",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Salary",
table: "Employee");
migrationBuilder.DropColumn(
name: "IsPf",
table: "Employee");
}