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