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

Exposed Kotlin ORM framework gradle and intellij plugins

Results 13 exposed-intellij-plugin issues
Sort by recently updated
recently updated
newest added

The plugin throws an exception when the tables as Interval ou Time, the Interval should use duration and Time should use Time/Localtime. Congrats for this plugin.

While this does change the type to be Table.PrimaryKey, it does solve the issue presented with using Flywheel as indicated in #8

Not sure what I have wrong here but would appreciate some guidance. I push table definitions to a local H2 db using Liquibase via build.gradle.kts, the tables are verified as...

Addresses #9 This provides a configuration item for which time library to generate time and datetime mappings for. This can be set using either the gradle DSL or the configuration...

Using the chinook.db sample, tables are generated like: ```kotlin object Employees : IntIdTable("employees", "employeeid") { val lastName: Column = varchar("lastname", 20) val firstName: Column = varchar("firstname", 20) val title: Column...

Hello - great plugin. Is there a way explicitly exclude/include tables or database objects during code generation? Perhaps similar to this jooq functionality linked below. My use case is that...

I tried using the Gradle plugin together with Flyway for migrations. When I run `generateExposedCode`, there is a class generated for the FlywaySchemaHistory table. Strangely, in the generated code it...

bug

Hi! I haven't had a chance to make a minimal example, however I have encountered an issue w/ the exposed gradle plugin's kotlinRelocate function on second run when using a...

I want use the [SQL DSL](https://github.com/JetBrains/Exposed#sql-dsl) but not [DAO](https://github.com/JetBrains/Exposed#dao), how can I do it?

It would be nice to support enums, but I recognize that's one of the more complicated features to implement. I'm leaving this here because I spent a good 1.5 days...