From 2ed572a374cf3f26ba48e9d3e5d14deb75cce495 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 22 Aug 2018 06:44:58 -0500 Subject: [PATCH] remove 186 and 187 from CantSnapshot ref #374 ref #201 --- .../Seed/Extensions/SeedFilterListsDbContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Data/Seed/Extensions/SeedFilterListsDbContext.cs b/src/FilterLists.Data/Seed/Extensions/SeedFilterListsDbContext.cs index 06458bd35..85003639d 100644 --- a/src/FilterLists.Data/Seed/Extensions/SeedFilterListsDbContext.cs +++ b/src/FilterLists.Data/Seed/Extensions/SeedFilterListsDbContext.cs @@ -112,7 +112,7 @@ private static string GetUpdateUnchangedColumnHack(IEnumerable proper //TODO: https://github.com/collinbarrett/FilterLists/issues/201 private static void SetCantSnapshot(DbContext dbContext) { - const string rawSqlString = "UPDATE filterlists SET CantSnapshot = 1 WHERE id IN(48, 149, 173, 185, 186, 187, 188, 189, 352)"; + const string rawSqlString = "UPDATE filterlists SET CantSnapshot = 1 WHERE id IN(48, 149, 173, 185, 188, 189, 352)"; dbContext.Database.ExecuteSqlCommand(rawSqlString); dbContext.SaveChanges(); }