Skip to content

Commit 78a3268

Browse files
committed
Remove cast SQLlite cast
1 parent 27cbf0b commit 78a3268

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Database/Adapter/SQLite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ public function createDocument(string $collection, Document $document): Document
609609
$statment->execute();
610610
$last = $statment->fetch();
611611

612-
$document['$sequence'] = (int)$last['id'];
612+
$document['$sequence'] = $last['id'];
613613

614614
if (isset($stmtPermissions)) {
615615
$stmtPermissions->execute();

0 commit comments

Comments
 (0)