From 67f24f792ffa911ec1d2a5c2e53ab1b08da9c692 Mon Sep 17 00:00:00 2001 From: Tobias Walter Date: Thu, 16 May 2019 16:57:31 +0200 Subject: [PATCH] corrects the name in the doc of the full-text-search-trigger to drop --- doc/mapping/full-text-search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/mapping/full-text-search.md b/doc/mapping/full-text-search.md index 0a838c72d..da790b1ab 100644 --- a/doc/mapping/full-text-search.md +++ b/doc/mapping/full-text-search.md @@ -116,7 +116,7 @@ public partial class CreateProductTable : Migration protected override void Down(MigrationBuilder migrationBuilder) { // Migrations for dropping of the column and the index will appear here, all we need to do is drop the trigger: - migrationBuilder.Sql("DROP TRIGGER product_search_vector"); + migrationBuilder.Sql("DROP TRIGGER product_search_vector_update"); } } ```