mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.2 KiB
71 lines
2.2 KiB
using System; |
|
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
#nullable disable |
|
|
|
namespace ErsatzTV.Infrastructure.Sqlite.Migrations |
|
{ |
|
/// <inheritdoc /> |
|
public partial class Add_ChannelPlayoutSource : Migration |
|
{ |
|
/// <inheritdoc /> |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.AddColumn<int>( |
|
name: "MirrorSourceChannelId", |
|
table: "Channel", |
|
type: "INTEGER", |
|
nullable: true); |
|
|
|
migrationBuilder.AddColumn<TimeSpan>( |
|
name: "PlayoutOffset", |
|
table: "Channel", |
|
type: "TEXT", |
|
nullable: true); |
|
|
|
migrationBuilder.AddColumn<int>( |
|
name: "PlayoutSource", |
|
table: "Channel", |
|
type: "INTEGER", |
|
nullable: false, |
|
defaultValue: 0); |
|
|
|
migrationBuilder.CreateIndex( |
|
name: "IX_Channel_MirrorSourceChannelId", |
|
table: "Channel", |
|
column: "MirrorSourceChannelId"); |
|
|
|
migrationBuilder.AddForeignKey( |
|
name: "FK_Channel_Channel_MirrorSourceChannelId", |
|
table: "Channel", |
|
column: "MirrorSourceChannelId", |
|
principalTable: "Channel", |
|
principalColumn: "Id", |
|
onDelete: ReferentialAction.SetNull); |
|
} |
|
|
|
/// <inheritdoc /> |
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropForeignKey( |
|
name: "FK_Channel_Channel_MirrorSourceChannelId", |
|
table: "Channel"); |
|
|
|
migrationBuilder.DropIndex( |
|
name: "IX_Channel_MirrorSourceChannelId", |
|
table: "Channel"); |
|
|
|
migrationBuilder.DropColumn( |
|
name: "MirrorSourceChannelId", |
|
table: "Channel"); |
|
|
|
migrationBuilder.DropColumn( |
|
name: "PlayoutOffset", |
|
table: "Channel"); |
|
|
|
migrationBuilder.DropColumn( |
|
name: "PlayoutSource", |
|
table: "Channel"); |
|
} |
|
} |
|
}
|
|
|