using Microsoft.EntityFrameworkCore.Migrations; namespace API.Data.Migrations { public partial class BookReadingDirectionPref : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "BookReaderReadingDirection", table: "AppUserPreferences", type: "INTEGER", nullable: false, defaultValue: 0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "BookReaderReadingDirection", table: "AppUserPreferences"); } } }