using Microsoft.EntityFrameworkCore.Migrations;
using NpgsqlTypes;
#nullable disable
namespace OpenArchival.DataAccess.Migrations
{
///
public partial class AddedFileTextContentsSearchVector : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "FileContentSearchString",
table: "ArtifactGroupings",
type: "text",
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "FileContentSearchVector",
table: "ArtifactGroupings",
type: "tsvector",
nullable: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FileContentSearchString",
table: "ArtifactGroupings");
migrationBuilder.DropColumn(
name: "FileContentSearchVector",
table: "ArtifactGroupings");
}
}
}