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