2019-08-02 19:04:34 -04:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Migrations.Postgresql
|
2019-08-02 19:04:34 -04:00
|
|
|
|
{
|
|
|
|
|
public partial class AddSearchNameToEFAlias : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "SearchableName",
|
|
|
|
|
table: "EFAlias",
|
|
|
|
|
maxLength: 24,
|
|
|
|
|
nullable: true);
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_EFAlias_SearchableName",
|
|
|
|
|
table: "EFAlias",
|
|
|
|
|
column: "SearchableName");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropIndex(
|
|
|
|
|
name: "IX_EFAlias_SearchableName",
|
|
|
|
|
table: "EFAlias");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "SearchableName",
|
|
|
|
|
table: "EFAlias");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|