mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 17:42:15 -05:00
postgres sequence error fix, issue #602
This commit is contained in:
parent
06e1a9a98a
commit
1bcbe8bebf
@ -374,7 +374,7 @@ class Database {
|
||||
$id = null;
|
||||
}
|
||||
else {
|
||||
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'users_id_seq' : '' ));
|
||||
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'entries_id_seq' : '') );
|
||||
}
|
||||
return $id;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user