Open vitabaks opened 2 years ago
no problem installing the extension on PostgreSQL 10, 11, 12, 13, 14, and 15
psql (10.22 (Debian 10.22-1.pgdg110+1))
Type "help" for help.
postgres=# CREATE EXTENSION pgjwt CASCADE;
NOTICE: installing required extension "pgcrypto"
CREATE EXTENSION
postgres=# \dx
List of installed extensions
Name | Version | Schema | Description
----------+---------+------------+-----------------------------------
pgcrypto | 1.3 | public | cryptographic functions
pgjwt | 0.2.0 | public | JSON Web Token API for Postgresql
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
(3 rows)
psql (15.0 (Debian 15.0-1.pgdg110+1))
Type "help" for help.
postgres=# CREATE EXTENSION pgjwt CASCADE;
NOTICE: installing required extension "pgcrypto"
CREATE EXTENSION
postgres=# \dx
List of installed extensions
Name | Version | Schema | Description
----------+---------+------------+-----------------------------------
pgcrypto | 1.3 | public | cryptographic functions
pgjwt | 0.2.0 | public | JSON Web Token API for Postgresql
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
(3 rows)
Error installing pgjwt 0.2.0 the extension on PostgreSQL 9.6
Although there is a file "
pgjwt--0.1.1--0.2.0.sql
", we can only install version0.1.1
lists the specific extension versions that are available for installation.
And we can update the extension to version 0.2.0
I expect there will be an option to install the latest version with the command
CREATE EXTENSION pgjwt;