using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AsbCloudDb.Migrations { public partial class Make_Driller_patronimic_nullable : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "patronymic", table: "t_driller", type: "character varying(255)", maxLength: 255, nullable: true, comment: "Отчество", oldClrType: typeof(string), oldType: "character varying(255)", oldMaxLength: 255, oldComment: "Отчество"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "patronymic", table: "t_driller", type: "character varying(255)", maxLength: 255, nullable: false, defaultValue: "", comment: "Отчество", oldClrType: typeof(string), oldType: "character varying(255)", oldMaxLength: 255, oldNullable: true, oldComment: "Отчество"); } } }