Skip to main content

Version control your database!

Project description

DVC

Version Control Your Database Now!

A Database Version Control (DVC) tool written in Python.

GitHub Read the Docs (version) GitHub Workflow Status PyPI PyPI - Python Version GitHub commit activity GitHub last commit

GitHub followers YouTube Channel Views

More information

GitHub DockerHub Readthedocs Youtube
Github Dockerhub Readthedocs Youtube

Key Features

Command line interface

Command Line Interface

Rich Database metadata

Rich Database Metadata

Database Upgrade and Downgrade

Rich Database Metadata

Flexible Configuration Format

  • Via Environment Variables

Config via environment variables

  • Via Configuration File

Config via environment variables

Deployment

As a Commandline tool

Executables on github releases

https://github.com/kenho811/Python_Database_Version_Control/releases

  • The releases page provides executables on the below three Operating Systems.
    • Mac (Latest)
    • Linux Ubunutu (Latest)
    • Windows (Latest)

if you happen to use one of the OSes listed above, you can download the executable directly and use it without installing python!

Python Library on PyPI

https://pypi.org/project/database-version-control/

  • If you have python and pip installed, you can download the command line tool from PyPI!
# Install the library from PyPi
pip install database-version-control

# To get more instructions of the commandline tool, run the below in the terminal
dvc --help

As a Microservice

Image on Dockerhub

https://hub.docker.com/repository/docker/kenho811/database-version-control#

  • Run the below to see it in action
# Clone the repo and checkout release branch
git clone -b release git@github.com:kenho811/Python_Database_Version_Control.git 

# cd to the repository
cd Python_Database_Version_Control/docker_compose_demo

# Fnd the docker-compose.yml and run 
docker compose up

# Using psql as client, access the postgres DB and see the result
(URL: postgres://test:test@localhost:5433/test)
PGPASSWORD=test psql -U test -d test -h localhost -p 5433

# Check out docker-compose.yml file for usage as a microservice

Development-Testing-release workflow

# Git clone the repo and checkout master
git clone -b master git@github.com:kenho811/Python_Database_Version_Control.git 

# create a feature branch
git checkout -b feature/{code_change_theme}

# Pip install dependencies
pip install with `pip install ".[dev]"`

# Enable local githooks
git config --local core.hooksPath .githooks/

# Development

# Write unit + integration tests

# Run pytest
pytest

# Generate Documentation locally. ISLOCAL=1 removes local dependencies.
cd docs
ISLOCAL=1 make clean html

# Open PR against master

# (By maintainer) For a new release, cut a new release branch with version number (match app version number). 
git checkout -b release/{app_version_number}

CI convention

  • The below is currently triggered via Github Action
Branch Testing DockerHub tag Dockerhub Readme PyPI version Readthedocs version
master Yes latest Yes N/A latest
release/{major.minor} Yes N/A N/A N/A N/A
feature Yes N/A No N/A feature-doc
Tag DockerHub tag Dockerhub Readme PyPI version Readthedocs version
release/{major.minor.patch} release-{major.minor.patch} No {major.minor.patch} release-{major.minor.patch}

Technical Details

Database supported

Postgres
Postgres

Support for other databases will be added soon....

Database instructions format supported

  • SQL files

SQL files naming convention

  • All SQL files are considered revision files
  • They must follow the pattern RV[0-9]*__.*\.(upgrade|downgrade)\.sql. In words, it means
    • They start with the prefix RV
    • After RV, it follows an arbitrary revision number (e.g. RV1, RV2, RV3 etc. etc.)
    • After RV(arbitrary_revision_number), it follows double underscores and an arbitrary number of characters. Everything after __ describes what the SQL file does.
    • After RV(arbitrary_revision_number)__(description), it follows a dot and the character group of either upgrade or downgrade. When applied, an upgrade revision file will move the database version upward by 1, while a downgrade revision file will move the database version downward by 1.
    • After RV(arbitrary_revision_number)__(description).(upgrade/downgrade), it follows a dot and the character group of sql .
    • Overall, RV(arbitrary_revision_number)__(description).(upgrade/downgrade).sql
  • Example SQL revision files
    • RV1__create_scm_company_secrets_and_tbl_earnings.upgrade.sql
    • RV1__delete_scm_company_secrets_cascade.downgrade.sql
    • RV2__alter_scm_company_secrets_tbl_earnings_updated_at_add_index.upgrade.sql
    • RV2__alter_scm_company_secrets_tbl_earnings_updated_at_remove_index.downgrade.sql

Database Metadata

  • Schema dvc will be created
    • Table dvc.database_revision_history will be created.
    • Table dvc.database_version_history will be created.

User Interface

  • CLI
    • Made with Python Typer Library
      • Entrypoint is dvc
      • Sample commands are
        • dvc version --> Show version
        • dvc cfg --> Configuration related commands
          • dvc cfg init --> Generate configuration files
        • dvc db --> Database related commands
          • dvc db init --> Initialise the database with metadata schema and tables
          • dvc db upgrade ---> Apply Database Upgrade Revision and mark to metadata tables
            • dvc db upgrade --mark-only ---> Only mark to metadata tables
          • dvc db downgrade ---> Apply Database Downgrade Revision
            • dvc db downgrade --mark-only ---> Only mark to metadata tables
          • dvc db current ---> Current Database Version
          • dvc db ping --> Ping database connection

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

database_version_control-0.6.2.tar.gz (21.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page