A Python library created by Makpar Innovation Lab for versioning database schemas. Currently compatible with PostgreSQL. schema_cntl uses AWS QLDB to maintain a revision history of a schema.json. This file defines the schema at a single point in time. As schema.json changes are committed, the revision history expands. This library generates SQL statements that allow the user to transform the schema from one revision to another.
This is a command line utility. To use it, you must install the latest distribution from PyPi,
pip install schema_cntl
This library uses innoldb, another package supported by the Makpar Innovation Lab, to persist the schema.json to an AWS Quantum Ledger Database. As such, in order to use this package, you will need to create a QLDB ledger and an IAM account with permissions to access that ledger. For more detailed instructions on setting the necesssary resources on AWS, refer to the innoldb documentation
You will need to point the LEDGER environment variable to the name of the QLDB ledger and the TABLE environment variable to the name of the table you intend to use. The ledger must exist, but if the table does not exist, schema_cntl will create a new one.
export LEDGER="<ledger-name>"
export TABLE="<table>"
A database schema is specified through a JSON configuration file formatted as follows,
{
"schema": {
"name": "<schema-name>",
"engine": "<postgres | ... >",
"tables": [
{
"name": "<table-name>",
"columns": [
{
"name": "<name>",
"type": "<bool | varchar | float8 | int | decimal | date> : ignored if primary key == true",
"limit": "<limit> : optional, defaults to None",
"primary_key": "<true | false> : optional, defaults to false",
"foreign_key_references" : "<fk> : optional, defaults to None",
"not_null": "<true | false> : optional, defaults to false"
}
]
}
]
}
}
For example, the following schema creates a table named test_table
with three fields: a primary key field unique_id
, an integer field sample_int
and a text field sample_text
.
{
"schema": {
"engine": "postgres",
"name": "test_schema",
"tables": [
{
"name": "test_table",
"columns": [
{
"name": "unique_id",
"primary_key": true
},
{
"name": "sample_int",
"type": "int"
},
{
"name": "sample_text",
"type": "text"
}
]
}
]
}
}
- Commit Revision
- List Revision History
- Generate Schema
- Generate Differences
schema_cntl commit <path-to-schema.json>
schema_cntl history <path-to-schema.json> --limit <revision_limit>
schema_cntl schema <path-to-schema.json> <revision>
schema_cntl diff <path-to-schema.json> <start_revision> <end_revision>