remove 186 and 187 from CantSnapshot

ref #374
ref #201
This commit is contained in:
Collin M. Barrett 2018-08-22 06:44:58 -05:00
parent fc83787393
commit 2ed572a374

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