资 源 简 介
Introduction
The migrations pod provides a database migration library modelled loosely on rails and scala migrations, with a more Fantom-like (hopefully) feel to it. Features include:
SQL-like syntax (close enough to be familiar, far enough to be usable)
Database agnostic and extendable through adapters (although so far it"s only been tested against MySQL)
Bi-directional migrations (up and down)
Full tracking of version changes to the database
Constraint support (foreign keys, uniqueness and custom checks)
Reasonably well tested (see the test folder)
In use for at least one production database that I know of :)
Motivation
Why another migration library? Good question!
In short, I have a customer who needed something like this. We could"ve picked up one of the existing tools, but I also wanted something to get my hands dirty with some fanto