using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace YD_WeChatApplet.Api.Migrations { public partial class _20250414v1 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "WorkText", table: "WCA_GroupTask", type: "nvarchar(max)", nullable: true, comment: "作业内容", oldClrType: typeof(string), oldType: "nvarchar(max)", oldComment: "作业内容"); migrationBuilder.AddColumn( name: "PhoneNo", table: "WCA_GroupMembers", type: "nvarchar(11)", nullable: true, comment: "手机号"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PhoneNo", table: "WCA_GroupMembers"); migrationBuilder.AlterColumn( name: "WorkText", table: "WCA_GroupTask", type: "nvarchar(max)", nullable: false, defaultValue: "", comment: "作业内容", oldClrType: typeof(string), oldType: "nvarchar(max)", oldNullable: true, oldComment: "作业内容"); } } }