I'm considering using CouchDB for an upcoming web development project.
What is the best way to keep the CouchDB document repo in sync between various developers who are all running the application locally?
An Example: Suppose Developer A creates a new view or design document in Couch or just simply adds a field to an existing view. They also check in some client-side code that expects that field to be on the CouchDB view. Developer B comes in and updates to the latest source code, pulling down Developer A's client-side changes. How does Developer B get the Couch changes that accompany the client-side code?
In a typical RDBMS, this would be accomplished by checking a set of SQL files or database migrations into the SCM system. After Developer B updates his code he would run the new SQL or migration scripts to upgrade his database schema.
Perhaps in Couch there is a way to export/import design docs and view definitions and check those into an SCM system? Perhaps I just need my RDBMS background brainwashing to be deprogrammed.