using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace JobsMedical.Web.Migrations
{
///
public partial class PerSourceProxy : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "BaleUseProxy",
table: "AppSettings",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "DivarUseProxy",
table: "AppSettings",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "MedjobsUseProxy",
table: "AppSettings",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "TelegramUseProxy",
table: "AppSettings",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "WebsitesUseProxy",
table: "AppSettings",
type: "boolean",
nullable: false,
defaultValue: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BaleUseProxy",
table: "AppSettings");
migrationBuilder.DropColumn(
name: "DivarUseProxy",
table: "AppSettings");
migrationBuilder.DropColumn(
name: "MedjobsUseProxy",
table: "AppSettings");
migrationBuilder.DropColumn(
name: "TelegramUseProxy",
table: "AppSettings");
migrationBuilder.DropColumn(
name: "WebsitesUseProxy",
table: "AppSettings");
}
}
}