95 lines
2.8 KiB
C#
95 lines
2.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace ErsatzTV.Infrastructure.MySql.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Rework_PlayoutTemplate_ActiveDateRange : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "EndDate",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "StartDate",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "EndDay",
|
|
table: "PlayoutTemplate",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "EndMonth",
|
|
table: "PlayoutTemplate",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "LimitToDateRange",
|
|
table: "PlayoutTemplate",
|
|
type: "tinyint(1)",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "StartDay",
|
|
table: "PlayoutTemplate",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "StartMonth",
|
|
table: "PlayoutTemplate",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "EndDay",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "EndMonth",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "LimitToDateRange",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "StartDay",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "StartMonth",
|
|
table: "PlayoutTemplate");
|
|
|
|
migrationBuilder.AddColumn<DateTimeOffset>(
|
|
name: "EndDate",
|
|
table: "PlayoutTemplate",
|
|
type: "datetime(6)",
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<DateTimeOffset>(
|
|
name: "StartDate",
|
|
table: "PlayoutTemplate",
|
|
type: "datetime(6)",
|
|
nullable: true);
|
|
}
|
|
}
|
|
}
|