using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Brizco.Repository.Migrations
{
///
public partial class editShiftPlanAddComplete : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "CompleteDescription",
schema: "public",
table: "ShiftPlans",
type: "text",
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "CompletePercent",
schema: "public",
table: "ShiftPlans",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn(
name: "IsCompleted",
schema: "public",
table: "ShiftPlans",
type: "boolean",
nullable: false,
defaultValue: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CompleteDescription",
schema: "public",
table: "ShiftPlans");
migrationBuilder.DropColumn(
name: "CompletePercent",
schema: "public",
table: "ShiftPlans");
migrationBuilder.DropColumn(
name: "IsCompleted",
schema: "public",
table: "ShiftPlans");
}
}
}