37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Backend.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddSeasonWorkflowRulesJson : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "WorkflowRulesJson",
|
|
table: "Seasons",
|
|
type: "text",
|
|
nullable: false,
|
|
defaultValue: "[]");
|
|
|
|
migrationBuilder.Sql(
|
|
"""
|
|
UPDATE "Seasons"
|
|
SET "WorkflowRulesJson" = COALESCE(NULLIF((SELECT "WorkflowRulesJson" FROM "SiteSettings" WHERE "Id" = 1), ''), '[]')
|
|
WHERE COALESCE("WorkflowRulesJson", '') = '';
|
|
""");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "WorkflowRulesJson",
|
|
table: "Seasons");
|
|
}
|
|
}
|
|
}
|