Jocelyne

Results 8 issues of Jocelyne

### **The issue**: When attempting to store `ULong.MAX_VALUE` in a `ulong` column, retrieving it results in -1 and not `ULong.MAX_VALUE`. The reason is that we invoke `.toLong()` on the `ULong`...

Requesting early feedback for the `migrate` API using Flyway. The database migration is currently failing for SQLite and MariaDB and needs further investigation. For PostgreSQLNG, it does not work with...

Added an additional check to see if the table is an alias and use the alias' delegate in that case. I wanted to change the same logic in `UpdateBuilder`, but...

**Summary of the change**: The function `MigrationUtils.statementsRequiredForDatabaseMigration` now includes the proper statements to change the type of a column when it detects that the auto-increment status has changed for PostgreSQL...

#### Description **Detailed description**: - **What**: Restructure code in `MigrationUtils` and `SchemaUtils`. - **Why**: To avoid calling `currentDialect.tableColumns(*tables)` in `MigrationUtils.statementsRequiredForDatabaseMigration` twice. - **How**: `SchemaUtils` and `MigrationUtils` reside in separate modules...

#### Description **Detailed description**: - **What**: The SQL type of H2 Oracle Long type were changed. A CHECK constraint was also added for SQLite and Oracle. - **Why**: 1. H2...