using Microsoft.EntityFrameworkCore.Migrations; namespace Win_in.Sfs.Wms.Job.Migrations { public partial class countjob : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Description", table: "JobCountJob", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Type", table: "JobCountJob", type: "int", nullable: false, defaultValue: 0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Description", table: "JobCountJob"); migrationBuilder.DropColumn( name: "Type", table: "JobCountJob"); } } }