[mob][photos] Fix incorrent sqlite operation

This commit is contained in:
ashilkn 2024-05-17 16:28:13 +05:30
parent 16178b6f09
commit 48436694eb

View file

@ -28,6 +28,7 @@ extension EntitiesDB on FilesDB {
'''
INSERT OR ${conflictAlgorithm.name.toUpperCase()}
INTO entities (id, type, ownerID, data, updatedAt)
VALUES (?, ?, ?, ?, ?)
''',
parameterSets,
);
@ -39,6 +40,7 @@ extension EntitiesDB on FilesDB {
'''
INSERT OR ${conflictAlgorithm.name.toUpperCase()}
INTO entities (id, type, ownerID, data, updatedAt)
VALUES (?, ?, ?, ?, ?)
''',
parameterSets,
);