hyperledger / aries-askar

Secure storage designed for Hyperledger Aries agents.
Apache License 2.0
59 stars 45 forks source link

Postgres provisioning fixes #177

Closed andrewwhitehead closed 1 year ago

andrewwhitehead commented 1 year ago

For support of Postgres 15 where the CREATE permission isn't automatically granted on the 'public' schema.

Adds a new optional 'schema' parameter for postgres connection URLs (ie. postgres://user:pw@host/db?schema=public). When not set, the schema now defaults to the username when creating new tables.

For new stores,

For existing stores,

Fixes #129 ?

andrewwhitehead commented 1 year ago

178 should fix the test failure on Windows and it might be best to merge that PR first.