add 489 to skipped snapshots

ref #200
This commit is contained in:
Collin M. Barrett 2018-08-22 16:50:01 -05:00
parent 61fe2b73b3
commit ea5e60bc56

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();
}