Git Product home page Git Product logo

sqldiff's Introduction

Introduction

A perl utility for scanning two MySQL database schemas and generating a diff between them. The result will be the necessary SQL for transforming the first database schema into the second.

The script will also make judgements about the relative safety of the operations.

Safe Operations

  • Adding a table
  • Adding a column
  • Column type change that would cause no data loss (e.g. INT -> BIGINT, UINT -> INT, VARCHAR -> TEXT, INT -> VARCHAR, INT -> FLOAT, ...)
  • Changing NOT NULL to NULL
  • Adding an UNIQUE, FULLTEXT, or standard INDEX to a column

Unsafe Operations

  • Removing a table
  • Changing table storage engine
  • Changing character set/collation
  • Column removal
  • Column rename
  • Addition/removal of auto_increment on a column
  • Changing NULL to NOT NULL
  • Changing primary key
  • Changing default value
  • Column type change that may lose data
  • Index removal
    • NOTE: DEFAULT CURRENT_TIMESTAMP, ON UPDATE CURRENT_TIMESTAMP, and auto_increment columns must be indexed. Beware multi-column indexes.

Ignored Operations

  • Change of index type (BTREE/RTREE/HASH)
  • Change of table AUTO_INCREMENT value

Upcoming features

  • Allow database schemas to be read from database hosts directly rather than from dump files.
  • Interpret statements other than USE/CREATE DATABASE/CREATE TABLE/DROP TABLE
  • Detecting "safe" character set/collation changes
  • Detecting "safe" shrinking of column type
  • Combine SQL deltas to form a single delta
  • Combine 1+ deltas with a base schema to form an updated base schema

sqldiff's People

Contributors

dingram avatar

Stargazers

Alvin Kuruvilla avatar Dmitry Sviderskiy avatar  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.