using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LibraryAPI.Migrations { public partial class AddBookTitle : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Title", table: "Books", type: "text", nullable: false, defaultValue: ""); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Title", table: "Books"); } } }