From ea5e60bc569a175f54687fdc11471a8c73f5a19f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 22 Aug 2018 16:50:01 -0500 Subject: [PATCH] add 489 to skipped snapshots ref #200 --- .../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 85003639d..bcc6b9e45 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, 188, 189, 352)"; + const string rawSqlString = "UPDATE filterlists SET CantSnapshot = 1 WHERE id IN(48, 149, 173, 185, 188, 189, 352, 489)"; dbContext.Database.ExecuteSqlCommand(rawSqlString); dbContext.SaveChanges(); }