42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
using NpgsqlTypes;
 | 
						|
 | 
						|
#nullable disable
 | 
						|
 | 
						|
namespace DysonNetwork.Sphere.Migrations
 | 
						|
{
 | 
						|
    /// <inheritdoc />
 | 
						|
    public partial class RemovePostSearchVector : Migration
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.DropIndex(
 | 
						|
                name: "ix_posts_search_vector",
 | 
						|
                table: "posts");
 | 
						|
 | 
						|
            migrationBuilder.DropColumn(
 | 
						|
                name: "search_vector",
 | 
						|
                table: "posts");
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.AddColumn<NpgsqlTsVector>(
 | 
						|
                name: "search_vector",
 | 
						|
                table: "posts",
 | 
						|
                type: "tsvector",
 | 
						|
                nullable: false)
 | 
						|
                .Annotation("Npgsql:TsVectorConfig", "simple")
 | 
						|
                .Annotation("Npgsql:TsVectorProperties", new[] { "title", "description", "content" });
 | 
						|
 | 
						|
            migrationBuilder.CreateIndex(
 | 
						|
                name: "ix_posts_search_vector",
 | 
						|
                table: "posts",
 | 
						|
                column: "search_vector")
 | 
						|
                .Annotation("Npgsql:IndexMethod", "GIN");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |