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