using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace VOL.Core.Migrations { public partial class init080 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CreateDate", table: "S_HomeWork"); migrationBuilder.DropColumn( name: "Creator", table: "S_HomeWork"); migrationBuilder.DropColumn( name: "Modifier", table: "S_HomeWork"); migrationBuilder.DropColumn( name: "ModifyDate", table: "S_HomeWork"); migrationBuilder.DropColumn( name: "Remarks", table: "S_HomeWork"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CreateDate", table: "S_HomeWork", type: "datetime", nullable: true, comment: "创建时间"); migrationBuilder.AddColumn( name: "Creator", table: "S_HomeWork", type: "int)", nullable: true, comment: "创建人"); migrationBuilder.AddColumn( name: "Modifier", table: "S_HomeWork", type: "int)", nullable: false, defaultValue: 0, comment: "修改人"); migrationBuilder.AddColumn( name: "ModifyDate", table: "S_HomeWork", type: "datetime", nullable: true, comment: "修改时间"); migrationBuilder.AddColumn( name: "Remarks", table: "S_HomeWork", type: "text", nullable: true, comment: "备注"); } } }