using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Shentun.Peis.Migrations { public partial class init20240623001 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "patient_name", table: "patient_register", type: "character varying(50)", maxLength: 50, nullable: false, comment: "姓名", oldClrType: typeof(string), oldType: "character varying(20)", oldMaxLength: 20, oldComment: "姓名"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "patient_name", table: "patient_register", type: "character varying(20)", maxLength: 20, nullable: false, comment: "姓名", oldClrType: typeof(string), oldType: "character varying(50)", oldMaxLength: 50, oldComment: "姓名"); } } }