mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* More cases for parsing regex * Implemented a change to fix old special grouping. Added some TODOs as well for a future enhancement
25 lines
668 B
C#
25 lines
668 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace API.Data.Migrations
|
|
{
|
|
public partial class IsSpecialOnChapters : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IsSpecial",
|
|
table: "Chapter",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "IsSpecial",
|
|
table: "Chapter");
|
|
}
|
|
}
|
|
}
|