Coder Social home page Coder Social logo

db-migration-cmdline's Introduction

#Download

#Install

  • Create a directory in you user home: ~/.db-migration

  • Add file: settings.xml

  • Add confgiurations to your: settings.xml

    <?xml version="1.0" encoding="UTF-8" ?>
    <dbmigration>
        <databases>
            <database name="DEV-APP">
                <driver>com.mysql.jdbc.Driver</driver>
                <url>jdbc:mysql://localhost/dev_app</url>
                <username>app_user</username>
                <password>app_password</password>
            </database>
            <database name="INT-APP" prod="true">
                <driver>com.mysql.jdbc.Driver</driver>
                <url>jdbc:mysql://dev-linux-mysql5/int_app</url>
                <username>app_user</username>
                <password>app_password</password>
            </database>
        </databases>
    </dbmigration>
    

Execute

Command line for a sql files directory:

  • java -jar db-migration-cmdline-1.0.0-SNAPSHOT.jar -c MIGRATE -f sql-files.zip -t DEV-APP,INT-APP

Or for a sql files zip:

  • java -jar db-migration-cmdline-1.0.0-SNAPSHOT.jar -c MIGRATE -f sql-files -t DEV-APP,INT-APP

#Release a version

  • mvn --batch-mode release:clean release:prepare release:perform -DreleaseVersion=1.0.0 -DdevelopmentVersion=1.0.1-SNAPSHOT -Dtag=1.0.0

#Remove a existing tag after a release failure:

  • git tag -d '1.0.0'
  • git push origin :refs/tags/1.0.0

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.