Git Product home page Git Product logo

pg-migrate's Introduction

PG-Sync

PG-Sync is a PostgreSQL schema chnage management tool.

Why?

Other existing DB schema management tools deals with change sets or change set files, you dont have currunt structure of your schema in sigle place(file). Either you go through change sets or use database client tool(PG Admin).

How?

With PG-Sync you will have current database schema structure in file and PG_Sync will read your database structure and your schema file and apply diff on your database. current database schema structure = Schema if you do a fresh installation of current version of you application.


Installation

cargo install pg_sync


Examples

Example 1

CREATE TABLE table1
(
    column11 text
);

Will produce

CREATE TABLE table1
(
    column11 text
);

Example 2

CREATE TABLE table1
(
    column11 text,
    column12 text
);

Will produce

ALTER TABLE table1
    ADD COLUMN column12 text;

TODO

  • Drop old tables
  • Alter add column
  • Alter drop columns
  • Alter change column name
  • Alter change column data type
  • Alter change primary key
  • Alter change primary key with identity type

Change Log

Ver 0.3.0

  • CREATE new tables

Ver 0.2.0

  • CREATE SCHEMA

pg-migrate's People

Contributors

samjay000 avatar

Stargazers

 avatar Nikita Zhenev avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.