🗑️ Remove the shit simple search vector
This commit is contained in:
		| @@ -0,0 +1,41 @@ | ||||
| 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"); | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user