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