mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-25 02:56:04 -05:00
Fix check default category, and PostgreSQL seq bug (#1907)
checkDefault() was broken as it was not necessarily creating the default category with the right ID. PostgreSQL required additional care. https://github.com/FreshRSS/FreshRSS/issues/1890#issuecomment-392869777 https://github.com/FreshRSS/FreshRSS/pull/1322 https://github.com/FreshRSS/FreshRSS/issues/1312#issuecomment-254009397
This commit is contained in:
committed by
GitHub
parent
66ff16294a
commit
e98e40b7b4
@@ -52,7 +52,7 @@ $SQL_CREATE_TABLES = array(
|
||||
'CREATE INDEX %1$sis_read_index ON "%1$sentry" ("is_read");',
|
||||
'CREATE INDEX %1$sentry_lastSeen_index ON "%1$sentry" ("lastSeen");',
|
||||
|
||||
'INSERT INTO "%1$scategory" (name) SELECT \'%2$s\' WHERE NOT EXISTS (SELECT id FROM "%1$scategory" WHERE id = 1);',
|
||||
'INSERT INTO "%1$scategory" (id, name) SELECT 1, \'%2$s\' WHERE NOT EXISTS (SELECT id FROM "%1$scategory" WHERE id = 1) RETURNING nextval(\'%1$scategory_id_seq\');',
|
||||
);
|
||||
|
||||
global $SQL_CREATE_TABLE_ENTRYTMP;
|
||||
|
||||
Reference in New Issue
Block a user