exposed-intellij-plugin icon indicating copy to clipboard operation
exposed-intellij-plugin copied to clipboard

Gradle Plugin: Default value ignored

Open stefangaller opened this issue 3 years ago • 0 comments

I have the following column in my database:

excluded  boolean default false not null

The generated code is:

val excluded: Column<Boolean> = bool("excluded")

But it should be:

val excluded: Column<Boolean> = bool("excluded").default(false)

stefangaller avatar Oct 20 '21 06:10 stefangaller