using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace YD_WeChatApplet.Api.Migrations { public partial class init002 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "SchoolCode", table: "User", type: "nvarchar(100)", nullable: false, defaultValue: "", comment: "学校编号"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "SchoolCode", table: "User"); } } }