using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace YD_WeChatApplet.Api.Migrations { public partial class init007 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "BirthDate", table: "User", type: "datetime", nullable: true, comment: "出生日期"); migrationBuilder.AddColumn( name: "Height", table: "User", type: "float", nullable: true, comment: "身高"); migrationBuilder.AddColumn( name: "Weight", table: "User", type: "float", nullable: true, comment: "体重"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "BirthDate", table: "User"); migrationBuilder.DropColumn( name: "Height", table: "User"); migrationBuilder.DropColumn( name: "Weight", table: "User"); } } }