Skip to content
#

schema-migrations

Here are 51 public repositories matching this topic...

hyperknot
hyperknot commented Nov 20, 2019

I am using PG server in a certificate pinned environment. In Python / SQLAlchemy, this is the following code needed to connect:

pg_certs = {
    'sslcert': 'certs_dir/client-cert.pem',
    'sslkey': 'certs_dir/client-key.pem',
    'sslrootcert': 'certs_dir/server-ca.pem',
}

create_engine(pg_url, connect_args={'sslmode': 'require', **pg_certs}, ...)

Does Migra support this? I

Improve this page

Add a description, image, and links to the schema-migrations topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the schema-migrations topic, visit your repo's landing page and select "manage topics."

Learn more