-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readd user_data column for bw compat with very old dumps. (#57)
- Loading branch information
Showing
3 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "pgsodium", | ||
"abstract": "Postgres extension for libsodium functions", | ||
"description": "pgsodium is a PostgreSQL extension that exposes modern libsodium based cryptographic functions to SQL.", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"maintainer": [ | ||
"Michel Pelletier <[email protected]>" | ||
], | ||
|
@@ -13,7 +13,7 @@ | |
"abstract": "Postgres extension for libsodium functions", | ||
"file": "src/pgsodium.h", | ||
"docfile": "README.md", | ||
"version": "3.1.3" | ||
"version": "3.1.4" | ||
} | ||
}, | ||
"prereqs": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# pgsodium extension | ||
comment = 'Postgres extension for libsodium functions' | ||
default_version = '3.1.3' | ||
default_version = '3.1.4' | ||
relocatable = false | ||
schema = pgsodium |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE pgsodium.key ADD COLUMN user_data text; -- deprecated for b/w compat with <= 3.0.4 |