Skip to content

Tekaichi/schema-compare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Schema Compare

Schema compare is a simple utility tool with the sole goal of comparing schemas between two databases. Currently it only supports postgresql.

Upload Python Package

Installation

You can install Schema Compare from PyPi:

pip install schema-compare

How to use

  1. Define config.toml file
  2. python schema-compare {{config.toml path}}

Configuration file

[source]
username = ....
password = ....
hostname = ....
database = ....

[target]
username = ....
password = ....
hostname = ....
database = ....