Postgres package manager
Project description
pgpm is a package manager for Postgres database. Its main features include deployment of postgres objects (schemas, tables, functions, etc.), tracking of DDL changes and execution of arbitrary scripts across multiple data sources.
Installation
Prerequisites: Postgres 9.4+, python 2.7/3.4+.
Install psycopg2. This cannot be easily resolved with pip as the library relies on Postgres binaries. The step is not always trivial, though Google will certainly enlighten the path.
Run
$ pip install pgpm
Install pgpm in every postgres database you’ll be using with pgpm (must be a superuser). E.g.:
$ pgpm install "postgresql://postgres:postgres@localhost:5432/testdb"
Note: connection string must conform libpg format.
Main concepts
Package
In pgpm a package is a set of files in a directory with valid config.json (see below) file. When package is being deployed, pgpm reads the configuration and executes sql scripts from files specified in the package configuration. Note: config.json file must be present in a root directory of the package in order to use deployment feature of pgpm
Config
pgpm uses config.json file for a configuration of a package. Configuration file must be a single valid JSON object with the following properties:
Property name |
Required/Optional |
Value |
Description |
---|---|---|---|
name |
required |
string |
Name of the package (for details see section ‘Name of the package’) |
description |
optional |
string |
Description of the package |
subclass |
required |
string, accepts values: basic and versioned |
Type of the package when deployed as a DB schema. For details see section ‘Versioned or not versioned schema’ |
scope |
required |
string, accepts values: SCHEMA and DATABASE, defaults to SCHEMA |
Whether the the deployment should be bound to a specific schema or be for the whole DB. For details see section ‘Scope of package’. |
version |
required |
string, accepts values with the following format: [0..9][0..9]_[0..9][0..9]_[0..9][0..9] |
Version of the package. For details see section ‘Versioned or not versioned schema’. |
functions_path |
optional |
string |
A relative path (relative to the root directory of the package) to the folder with source code for stored procedures For details see section ‘Object types’. |
tables_path |
optional |
string |
A relative path (relative to the root directory of the package) to the folder with sql scripts that change table definitions For details see section ‘Object types’. |
types_path |
optional |
string |
A relative path (relative to the root directory of the package) to the folder with source code for types definitions For details see section ‘Object types’. |
triggers_path |
optional |
string |
A relative path (relative to the root directory of the package) to the folder with source code for triggers (not trigger functions, they go to functions_path) For details see section ‘Object types’. |
Name of the package
TODO
Versioned or not versioned schema
TODO
Scope of package
TODO
Object types
TODO
General config
TODO
Main features
Package deployment
TODO
DDL change logging
TODO
pgpm schema
TODO
TODOs
Provide support for DDL evolutions and dependency management.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pgpm-0.1.61-py2.py3-none-any.whl
.
File metadata
- Download URL: pgpm-0.1.61-py2.py3-none-any.whl
- Upload date:
- Size: 51.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41a1649199e48d2b4bac632d0080348e06bfb254eacc9efd4a29e02dfa61a0d6 |
|
MD5 | 5476d8dd6758bba3e91a64ad0b51f233 |
|
BLAKE2b-256 | 20b92e247bddf20c10ac7e957fe54244842a2e7b2de6152e5162c643905e5c26 |