using Microsoft.EntityFrameworkCore.Migrations; namespace ErsatzTV.Infrastructure.Sqlite.Migrations { public partial class Remove_EpisodeEpisodeNumber : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EpisodeNumber", table: "Episode"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "EpisodeNumber", table: "Episode", type: "INTEGER", nullable: false, defaultValue: 0); } } }