Re: [Liquibase-user] Re commendation

2009-05-18 Thread Diego Moreira da Rosa
On Mon, May 18, 2009 at 4:54 PM, jfrapper wrote: > How should I hook this into the Liquibase update process.  I really dont > want to put it at the end of each differential file.  Suggestions?! I usually put this kind of thing in my Ant script, after the call to Liquibase update task. Cheers, Di

Re: [Liquibase-user] Moving to a forum system

2009-04-29 Thread Diego Moreira da Rosa
I guess it is possible to receive emails for every new topic posted to a board by clicking the "Notify" button on the board. I would recommend that for the good old liquibase-user fans like me... Diego On Wed, Apr 29, 2009 at 5:15 AM, Voxland, Nathan wrote: > I have set up a LiquiBase Community

[Liquibase-user] Res: Keeping the order of execution on local databases

2009-04-20 Thread Diego Moreira da Rosa
> Developer A should have merged from the SCM, then done a complete > re-test, including rebuilding the database. At least, that's how I see it. Yep, that is another solution I'd forgotten, but it is also one I was trying to avoid. In general, I would not recommend rebuilding the database bec

[Liquibase-user] Keeping the order of execution on local databases

2009-04-20 Thread Diego Moreira da Rosa
Hi all, here is an interesting case that happened during our Liquibase/changeSet development. I was already aware of this possibility, but this was the first time that it really happened in our environment. In short, the problem is that, when developers hold their changeSets locally for a few

[Liquibase-user] Res: Does anyone use Java 1.4?

2009-04-20 Thread Diego Moreira da Rosa
I don't care much about this, but I think that anyone who still needs Java 1.4 can download a previous version of Liquibase and use it, right? Diego - Mensagem original > De: Paul Keeble > Para: liquibase-user@lists.sourceforge.net > Enviadas: Segunda-feira, 20 de Abril de 2009 11:1

[Liquibase-user] Res: Consolidating Change scripts

2009-04-02 Thread Diego Moreira da Rosa
Marco, we are currently using an approach that could make your dba happier: every release, we make an export of the database and use it as a "seed" for the next release. This way, we avoid having to re-execute all of the past changeSets everytime we need a fresh database. I guess this export/im

Re: [Liquibase-user] Res: Starting DB from scratch

2009-03-31 Thread Diego Moreira da Rosa
David C. Hicks escreveu: > Whether you choose to modify change sets during the Dev-QA cycle really > depends on your internal process, I would say. > > On 3/31/09 8:53 PM, Anastasios Angelidis wrote: >> How about in Dev-QA cycle, should the changeset be fixed or should a new >> changeset be

[Liquibase-user] Res: Starting DB from scratch

2009-03-31 Thread Diego Moreira da Rosa
> If you follow the best practices. That means that for every new > changeset... Will you have a new file which wont be comparable against > an old one? Usually you create a new changeSet for every change to be applied to the database. Except for rare cases such as when you are starting a bra