Files
ersatztv/ErsatzTV.Infrastructure.MySql/Migrations/20250530083135_Add_ProgramSchedule_FixedStartTimeBehavior.cs
T

30 lines
841 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.MySql.Migrations
{
/// <inheritdoc />
public partial class Add_ProgramSchedule_FixedStartTimeBehavior : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "FixedStartTimeBehavior",
table: "ProgramSchedule",
type: "int",
nullable: false,
defaultValue: 0);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FixedStartTimeBehavior",
table: "ProgramSchedule");
}
}
}