Fix typo in _getRowForCollection

This commit is contained in:
Neeraj Gupta 2021-10-24 09:28:08 +05:30
parent dd8fe294d4
commit 022398addc
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -189,7 +189,7 @@ class CollectionsDB {
if (collection.isDeleted ?? false) {
row[columnIsDeleted] = _sqlBoolTrue;
} else {
row[columnIsDeleted] = _sqlBoolTrue;
row[columnIsDeleted] = _sqlBoolFalse;
}
return row;
}