Database Schema Migration
Some thoughts: http://workingwithdevs.com/delivering-databases-migrations-vs-state/
This covers a lot of ground on the Declarative vs. Procedural question. It explains a lot of the considerations that lead to choosing a procedural schema evolution vs. a declarative schema with an implied change sequence to migrate to each new declared state.
The …
more ...