A new topic, 'Derby AutoIncrement', has been made on a board you are watching.

You can see it at
http://liquibase.org/forum/index.php?topic=480.new#new

The text of the topic is shown below:

Hi,

I'm trying to implement Liquibase with a derby database, and i'm running into a 
problem with our JPA inserts. Liquibase seems to produce the following SQL:

CREATE TABLE employee (id INT GENERATED BY DEFAULT AS IDENTITY  NOT NULL, name 
VARCHAR(50) NOT NULL, CONSTRAINT PK_EMPLOYEE PRIMARY KEY (id));

What I'm looking for this:

CREATE TABLE employee (id INT GENERATED ALWAYS AS IDENTITY  NOT NULL, name 
VARCHAR(50) NOT NULL, CONSTRAINT PK_EMPLOYEE PRIMARY KEY (id));

Is there anyway to do this with liquibase? I'm using the 2.0 RC1 due to issues 
with the 1.9.5.0 release.

Thanks!

Unsubscribe to new topics from this board by clicking here: 
http://liquibase.org/forum/index.php?action=notifyboard;board=1.0

Regards,
The LiquiBase Community Forum Team.
------------------------------------------------------------------------------

_______________________________________________
Liquibase-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/liquibase-user

Reply via email to