mirror of https://github.com/ErsatzTV/ErsatzTV.git
28 changed files with 4631 additions and 67 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
||||
#nullable disable |
||||
|
||||
namespace ErsatzTV.Infrastructure.Migrations |
||||
{ |
||||
/// <inheritdoc />
|
||||
public partial class Add_ProgramScheduleItemDuration_DiscardToFillAttempts : Migration |
||||
{ |
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.AddColumn<int>( |
||||
name: "DiscardToFillAttempts", |
||||
table: "ProgramScheduleDurationItem", |
||||
type: "INTEGER", |
||||
nullable: false, |
||||
defaultValue: 0); |
||||
} |
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.DropColumn( |
||||
name: "DiscardToFillAttempts", |
||||
table: "ProgramScheduleDurationItem"); |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue