grails-data-mapping icon indicating copy to clipboard operation
grails-data-mapping copied to clipboard

GORM - Groovy Object Mapping

Results 148 grails-data-mapping issues
Sort by recently updated
recently updated
newest added

### Steps to Reproduce 1. define following **domain** class class Mytest { def my_data = "123" static hasMany = [childItems: Mytest] } 2. execute the following code def mytest =...

### Steps to Reproduce 1. define following domain class class mytest { def my_data = "123" static hasMany = [childItems: mytest] static constraints = { childItems minSize: 1 } }...

### Steps to Reproduce 1. define following domain class `class mytest { def my_data = "123" static hasMany = [childItems: mytest] }` 2. execute the following code def mytest =...

Currently, I am migrating my server and database from UTC to EST. All, the data and server timezone in EST. But I am still getting the date in UTC for...

### Task List - [x] Steps to reproduce provided - [x] Example that reproduces the problem uploaded to Github - [x] Full description of the issue provided (see below) ###...

The detailed functionality (especially in edge cases dealing with inheritance) of unique constraints has changed back and forth over the last couple of years. As of 6.1.11, this behavior has...

### Task List - [x] Steps to reproduce provided - [x] Stacktrace (if present) provided - [x] Example that reproduces the problem uploaded to Github - [x] Full description of...

Thanks for reporting an issue for GORM, please review the task list below before submitting the issue. > WARNING: Your issue report will be closed if the issue report is...

### Steps to Reproduce 1. Create a multitenant application with GORM configured to use DISCRIMINATOR multitenancy. 2. Create domain object hierarchy with tablePerHierarchy false 3. Query on the child class...

I added the test case in the `EmbeddedAssociationSpec` itself inside `grails-datastore-gorm-test` project. ### Task List - [x] Steps to reproduce provided - [x] ~~Stacktrace (if present) provided~~ - [x] Example...