using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Migrations { /// public partial class Initial4 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "LibraryId", table: "Mangas", type: "character varying(64)", maxLength: 64, nullable: true, oldClrType: typeof(string), oldType: "character varying(64)", oldMaxLength: 64); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "LibraryId", table: "Mangas", type: "character varying(64)", maxLength: 64, nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "character varying(64)", oldMaxLength: 64, oldNullable: true); } } }