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