41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
|
|
||
|
|
#nullable disable
|
||
|
|
|
||
|
|
namespace JobsMedical.Web.Migrations
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public partial class IngestProxy : Migration
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.AddColumn<bool>(
|
||
|
|
name: "IngestProxyEnabled",
|
||
|
|
table: "AppSettings",
|
||
|
|
type: "boolean",
|
||
|
|
nullable: false,
|
||
|
|
defaultValue: false);
|
||
|
|
|
||
|
|
migrationBuilder.AddColumn<string>(
|
||
|
|
name: "IngestProxyUrl",
|
||
|
|
table: "AppSettings",
|
||
|
|
type: "character varying(200)",
|
||
|
|
maxLength: 200,
|
||
|
|
nullable: true);
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.DropColumn(
|
||
|
|
name: "IngestProxyEnabled",
|
||
|
|
table: "AppSettings");
|
||
|
|
|
||
|
|
migrationBuilder.DropColumn(
|
||
|
|
name: "IngestProxyUrl",
|
||
|
|
table: "AppSettings");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|