diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2022-03-02 17:44:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 17:44:52 +0100 |
commit | fd945ffb9314f3613a96cfe3aa4fbc389b702d7a (patch) | |
tree | 3178e16a2d7719f4991c349963c81e110cd146d4 /app/SQL/install.sql.pgsql.php | |
parent | 467ca9d0deea511700656d4433dbd915b137b748 (diff) | |
download | freshrss-fd945ffb9314f3613a96cfe3aa4fbc389b702d7a.tar.gz freshrss-fd945ffb9314f3613a96cfe3aa4fbc389b702d7a.zip |
Fix XPath context for tags (#4246)
#fix https://github.com/FreshRSS/FreshRSS/issues/4245
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/4220
Diffstat (limited to 'app/SQL/install.sql.pgsql.php')
-rw-r--r-- | app/SQL/install.sql.pgsql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SQL/install.sql.pgsql.php b/app/SQL/install.sql.pgsql.php index 0a8298d29..aa9fbbc3f 100644 --- a/app/SQL/install.sql.pgsql.php +++ b/app/SQL/install.sql.pgsql.php @@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS `_category` ( CREATE TABLE IF NOT EXISTS `_feed` ( "id" SERIAL PRIMARY KEY, "url" VARCHAR(511) UNIQUE NOT NULL, - "kind" SMALLINT DEFAULT 0, -- 0.20.0 + "kind" SMALLINT DEFAULT 0, -- 1.20.0 "category" SMALLINT DEFAULT 0, "name" VARCHAR(255) NOT NULL, "website" VARCHAR(255), |