using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DataLayer.Migrations { /// public partial class AddAbsentFromLastScan : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AbsentFromLastScan", table: "LibraryBooks", type: "INTEGER", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AbsentFromLastScan", table: "LibraryBooks"); } } }