using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ErsatzTV.Infrastructure.Sqlite.Migrations { /// public partial class Add_DecoMode : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DeadAirFallbackMode", table: "Deco", type: "INTEGER", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "WatermarkMode", table: "Deco", type: "INTEGER", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "DeadAirFallbackMode", table: "Deco"); migrationBuilder.DropColumn( name: "WatermarkMode", table: "Deco"); } } }