Coder Social home page Coder Social logo

dbversioning's Introduction

DBVersioning

DDL and DML updates are done through stored procedure which also adds a record into 'version' table with description, date, SQL string and developer's name. Update will be applied only if it doesn't have corresponding record in 'version' table (i.e. it hasn't been applied before). In this case it's easy to apply changes to different staging servers without manual tracking of which changes were already applied to which server.

Each update will have a section in stored procedure similar to this:

# ---------------------------------------------------------------------------
	SET @version_id = '2014-06-04 11:00:00';
	SET @version_comment = 'Creating table "test1"';
	SET @version_developer = 'Vitaly Spirin';

	SET @sqlStr1 = '
		CREATE TABLE test1
		(
			test1_id INTEGER AUTO_INCREMENT PRIMARY KEY
		);
	';

	SET @result = (SELECT version_id FROM version WHERE version_id = @version_id);

	IF (@result IS NULL)
	THEN 
		START TRANSACTION;
		PREPARE stmt1 FROM @sqlStr1;
		EXECUTE stmt1;

		INSERT INTO version(version_id, version_comment, version_timestamp, version_sql, version_developer) 
		VALUES(@version_id, @version_comment, CURRENT_TIMESTAMP(), @sqlStr1, @version_developer);
		
		INSERT INTO versionupdate 
		VALUES( 
			CONCAT('Updated to version = ', @version_id, ' (', @version_comment, '). Author: ', @version_developer) 
		);
		COMMIT;
	END IF;
# ---------------------------------------------------------------------------

If you realized that you want to modify update that had been already applied then instead of changing existing section in stored procedure you need to add a new one with further change!

After stored procedure was run list of applied updates (if any) will be shown:

Updated to version = 2014-06-04 11:00:00 (Creating table "test1"). Author: Vitaly Spirin

'version' table will have corresponding data:

screenshot1.png

dbversioning's People

Contributors

vitalyspirin 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.