5042ea6c91
implement enhanced search for chat messages
23 lines
612 B
C#
23 lines
612 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations
|
|
{
|
|
public partial class AddHostnameToEFServer : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "HostName",
|
|
table: "EFServers",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "HostName",
|
|
table: "EFServers");
|
|
}
|
|
}
|
|
}
|