Roland Praml

Results 29 issues of Roland Praml

Hello @rbygrave in this PR I tried to provide some code, what we are actually doing with `@DocStore` and `@Inheritance` We use a lot of `@DbJson` fields in our application,...

This PR allows to configure the DbMigration completely from properties-files and it is a plugin now. This means, ebean can automatically generate migration files. There is no programmatic code needed...

Hello Rob, we may have a fix for #2773 we debugged and noticed, that combinations of joins between 'fetch' & 'where' will not always work. By trial&error we found out,...

While DB recovery during run should be fine, this test checks, if ebean can start up with an offline DB. This might be important, if you fire up a stack...

This allows to run the DDL manually, which is necessary in a multi-tenant environment. It has parallels to #2467

Instead of copying dependant tables around, here I've refactored the dependant table handling

We have a multi tenant application (~50 tenants, TenantMode.DB_WITH_MASTER) and with #2954 we have a great tool to generate HTML metrics and inspect the live running application. Unfortunately, query-plan collect...

We want to backup & restore some data by exporting it to JSON. For this use case we need to preserve - whenCreated - whoCreated - whenModified - whoModified This...

Hello @rbygrave, this is more or less a proof-of-concept, where I need your feedback we have a multi-tenant application with ~ 50 tenants. I noticed, that we get a lot...

You can use `@DbJson` data types in DTO-objects now The DTO object ```java public static class DtoJackson { @DbJson(length = 700) Set plainValue; } ``` The query ```java DtoJackson dto...