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.
51 lines
2.0 KiB
51 lines
2.0 KiB
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
#nullable disable |
|
|
|
namespace ErsatzTV.Infrastructure.MySql.Migrations |
|
{ |
|
/// <inheritdoc /> |
|
public partial class Add_ProgramScheduleItemWatermarks : Migration |
|
{ |
|
/// <inheritdoc /> |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.CreateTable( |
|
name: "ProgramScheduleItemWatermark", |
|
columns: table => new |
|
{ |
|
ProgramScheduleItemId = table.Column<int>(type: "int", nullable: false), |
|
WatermarkId = table.Column<int>(type: "int", nullable: false) |
|
}, |
|
constraints: table => |
|
{ |
|
table.PrimaryKey("PK_ProgramScheduleItemWatermark", x => new { x.ProgramScheduleItemId, x.WatermarkId }); |
|
table.ForeignKey( |
|
name: "FK_ProgramScheduleItemWatermark_ChannelWatermark_WatermarkId", |
|
column: x => x.WatermarkId, |
|
principalTable: "ChannelWatermark", |
|
principalColumn: "Id", |
|
onDelete: ReferentialAction.Cascade); |
|
table.ForeignKey( |
|
name: "FK_ProgramScheduleItemWatermark_ProgramScheduleItem_ProgramSche~", |
|
column: x => x.ProgramScheduleItemId, |
|
principalTable: "ProgramScheduleItem", |
|
principalColumn: "Id", |
|
onDelete: ReferentialAction.Cascade); |
|
}) |
|
.Annotation("MySql:CharSet", "utf8mb4"); |
|
|
|
migrationBuilder.CreateIndex( |
|
name: "IX_ProgramScheduleItemWatermark_WatermarkId", |
|
table: "ProgramScheduleItemWatermark", |
|
column: "WatermarkId"); |
|
} |
|
|
|
/// <inheritdoc /> |
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropTable( |
|
name: "ProgramScheduleItemWatermark"); |
|
} |
|
} |
|
}
|
|
|