Re: How do I connect postgres table structures and view structures to an existing svn repository?

From: "D'Arcy J(dot)M(dot) Cain" <darcy(at)druid(dot)net>
To: "John Mitchell" <mitchelljj98(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: How do I connect postgres table structures and view structures to an existing svn repository?
Date: 2007-08-01 16:14:03
Message-ID: 20070801121403.888ae76b.darcy@druid.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wed, 1 Aug 2007 11:45:21 -0400
"John Mitchell" <mitchelljj98(at)gmail(dot)com> wrote:
> I am trying to store schema definitions in version-control which I can do by
> saving the definition and then importing into svn, but I would like it
> to be automatic , so that when an update occurs to a table or view within
> postgres then that table or view is flagged within svn. This would be
> similar to what I currently do with source code that I have for a web app
> within eclipse.

Not really an SQL question, in fact it is barely a PostgreSQL question
at all but I will try to give a pointer.

I don't know of any automated tools. I would suggest running a
cron script that dumps the database and then does an svn commit. If
there are no changes then the commit will do nothing. If there are
changes then svn will be updated.

Don't forget to pipe a log message into svn (-F or --file option) and
you may need to check for irrelevant changes in the dump before calling
svn.

--
D'Arcy J.M. Cain <darcy(at)druid(dot)net> | Democracy is three wolves
http://www.druid.net/darcy/ | and a sheep voting on
+1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Scott Marlowe 2007-08-01 16:46:11 Re: How do I connect postgres table structures and view structures to an existing svn repository?
Previous Message John Mitchell 2007-08-01 15:45:21 Re: How do I connect postgres table structures and view structures to an existing svn repository?