I have DDL like this 

CREATE TABLE user (

  id   INTEGER,

  name TEXT

);


CREATE TABLE photo (

  url    TEXT,

  userId INTEGER,

  FOREIGN KEY (userId) REFERENCES user(id)

);

Is it possible to generate a code out of it?

This suppose to be used with SQLite. 

As possible solution I can create an empty db during generate task and then 
generate code out of that empty db.
However I'd rather avoid additional complexity in build scripts if possible.

Best regards,
Sergii

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to