using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LANCommander.Migrations
{
///
public partial class AddRemoteServers : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "RemoteHostId",
table: "Servers",
type: "TEXT",
nullable: true);
migrationBuilder.AddColumn(
name: "RemoteServerId",
table: "Servers",
type: "TEXT",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "RemoteHostId",
table: "Servers");
migrationBuilder.DropColumn(
name: "RemoteServerId",
table: "Servers");
}
}
}