Add missing parameter specifier

This commit is contained in:
Vishnu Mohandas 2020-07-20 18:56:21 +05:30
parent e753832a63
commit 6469733ef0

View file

@ -48,7 +48,7 @@ class MemoriesDB {
final db = await instance.database;
return db.delete(
table,
where: '$columnSeenTime < ',
where: '$columnSeenTime < ?',
whereArgs: [timestamp],
);
}