using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace SVSim.Database.Migrations
{
///
public partial class ConfigPreferenceFlags : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Info_IsFoilPreferred",
table: "Viewers",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "Info_IsPrizePreferred",
table: "Viewers",
type: "boolean",
nullable: false,
defaultValue: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Info_IsFoilPreferred",
table: "Viewers");
migrationBuilder.DropColumn(
name: "Info_IsPrizePreferred",
table: "Viewers");
}
}
}