using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FlexJobApi.Database.Migrations.Migrations { /// public partial class UpdateUser0813 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "LastCheckReceiveTime", table: "TaskInfoUser", type: "datetime2", nullable: true); migrationBuilder.AddColumn( name: "CheckReceiveTime", table: "TaskInfo", type: "datetime2", nullable: true); migrationBuilder.AddColumn( name: "LastCheckReceiveTime", table: "TaskInfo", type: "datetime2", nullable: true); migrationBuilder.AddColumn( name: "LastSubmitTime", table: "TaskInfo", type: "datetime2", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "LastCheckReceiveTime", table: "TaskInfoUser"); migrationBuilder.DropColumn( name: "CheckReceiveTime", table: "TaskInfo"); migrationBuilder.DropColumn( name: "LastCheckReceiveTime", table: "TaskInfo"); migrationBuilder.DropColumn( name: "LastSubmitTime", table: "TaskInfo"); } } }