using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ErsatzTV.Infrastructure.MySql.Migrations { /// public partial class Add_RemoteStreamMetadata_ContentRatingPlot : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ContentRating", table: "RemoteStreamMetadata", type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "Plot", table: "RemoteStreamMetadata", type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ContentRating", table: "RemoteStreamMetadata"); migrationBuilder.DropColumn( name: "Plot", table: "RemoteStreamMetadata"); } } }