using Microsoft.EntityFrameworkCore.Migrations; namespace API.Data.Migrations { public partial class BookScrollIdProgress : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "BookScrollId", table: "AppUserProgresses", type: "TEXT", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "BookScrollId", table: "AppUserProgresses"); } } }