mirror of https://github.com/ErsatzTV/ErsatzTV.git
Browse Source
* fix skipping days with fixed start times * fix playouts getting "stuck" on the same items * rebuild all playouts * update dependenciespull/733/head
9 changed files with 3999 additions and 17 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,20 @@ |
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||||
|
|
||||||
|
#nullable disable |
||||||
|
|
||||||
|
namespace ErsatzTV.Infrastructure.Migrations |
||||||
|
{ |
||||||
|
public partial class Rebuild_AllPlayouts20220412 : Migration |
||||||
|
{ |
||||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
migrationBuilder.Sql(@"DELETE FROM PlayoutItem"); |
||||||
|
migrationBuilder.Sql(@"DELETE FROM PlayoutProgramScheduleAnchor"); |
||||||
|
migrationBuilder.Sql(@"DELETE FROM PlayoutAnchor"); |
||||||
|
} |
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue