Is there an option to tell the jOOQ generator to make properties of the generated Kotlin data classes nullable or not nullable depending on whether the column is NULL or NOT NULL in SQL.
I know that SQL NOT NULL does not guarantee this when using joins etc. but I can use records to map them.
I just want to use the data classes to pass them to different layers in the application that don't want to bother with jOOQ stuff, but need the null safety there.