Re: [Liquibase-user] InnoDB

2009-03-29 Thread Voxland, Nathan
That does work well if you are not wanting to change your database default. For 1.10 I am thinking of focusing on extensibility and including a contrib or plugin area to the site to include things like this. Nathan On Mar 29, 2009, at 12:45 PM, Jorge Falcão jlbfal...@gmail.com wrote: I

Re: [Liquibase-user] InnoDB

2009-03-29 Thread Ben Wolfe
You could just set your jdbc connection string to use InnoDB as the default storage engine (requires java connector 5.1) jdbc:mysql://localhost:3306/databasename?autoReconnect=truesessionVariables=storage_engine=InnoDB Ben Voxland, Nathan wrote: That does work well if you are not wanting to

[Liquibase-user] Column refactorings and derby

2009-03-29 Thread uli42
Hi, I tried to change a column type from integer to bigint. I used liquibase-1.9.1 and derby-10.4.2.0. I read the wiki manual and found out these differences: - modify column This doesn't work. I do get an exception. ERROR 42Z15: Invalid type specified for column 'TOTAL'. The type of a

Re: [Liquibase-user] InnoDB

2009-03-29 Thread Jorge Falcão
Better aproach! Thanks! []'s Falcão On Sun, Mar 29, 2009 at 5:57 PM, Ben Wolfe b...@openmrs.org wrote: You could just set your jdbc connection string to use InnoDB as the default storage engine (requires java connector 5.1)