Skip to main content

simple sql migration tool to save you from becoming mad

Project description

Nomad is a simple migration application, which specifically takes into account properties of development with DVCS and is completely agnostic from ORM or whatever you are using to access your database. It uses simple SQL scripts to migrate and can run pre- and post-processing routines written in any language (Python, Ruby or whatever do you use for your application).

https://travis-ci.org/piranha/nomad.png https://github.com/piranha/nomad/raw/master/docs/nomad.jpg

Concept

Nomad’s migration store is a directory with nomad.ini and a other directories inside. Each directory in it containing migration.ini is a single migration and name of this child directory is an unique identifier of a migration.

It looks like this:

migrations/
  nomad.ini
  2011-11-11-first-migration/
    migration.ini
    up.sql
  2011-11-12-second-migration/
    migration.ini
    1-pre.py
    2-up.sql
    3-post.py

And a nomad.ini could look like this:

[nomad]
engine = sqla
url = pgsql://user:password@host:port/db

Possible options for engine:

  • sqla - use SQLAlchemy as an adapter, supports everything SQLAlchemy supports

  • dbapi - use regular DB API, supports sqlite, mysql and pgsql

url can be defined in a few various ways:

  • url = <your-url-to-db> - just a static connection url

  • url-file = <path-to-file> - a path to file containing connection url

  • url-python = <python.mod>:<variable.name> - a Python path to a module, containing a variable with connection url

  • url-command = <cmd-to-execute> - command line to execute to get connection url

  • url-json = <path-to-file>:key.0.key - path to file with JSON and then path to a connection url within JSON object

  • url-ini = <path-to-file>:<section.key> - path to INI file (parsed by configparser with extended interpolation) and then path to a connection url within this file

Note that nomad.ini is parsed with extended interpolation (use it like ${var} or ${section.var}), and provides two predefined variables:

  • confpath - path to nomad.ini

  • confdir - path to directory, containing nomad.ini

Main properties

  • There is no downgrades - nobody ever tests them, they are rarely necessary

  • You can write migration in whatever language you want, tool only helps you track applied migrations and dependencies

  • .sql is treated differently and executed against database, configured in nomad.ini

  • Only .sql and executable files (sorry, Windows!) are executed. You can put READMEs, pieces of documentation, whatever you want alongside your migrations.

  • Name matters - everything is executed in order. Order is determined by using human sort (so that x-1.sql is earlier than x-10.sql, you can always check sorting with ls --sort=version).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nomad-0.5.tar.gz (8.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page