add 489 to skipped snapshots

ref #200
This commit is contained in:
Collin Barrett 2018-08-22 16:50:01 -05:00
parent 7122a6b40d
commit 1e61f4fd2b

View file

@ -112,7 +112,7 @@ private static string GetUpdateUnchangedColumnHack(IEnumerable<IProperty> 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();
}