» To Project

db schema issue overlapping entity name and property name

WebDSL #186 - Error (by Danny Groenewegen on Jun 28)

Mysql on case-insensitive file systems (default on Mac OS X): The following entity will cause overlapping column names:

entity Test{
  test -> List<Test>
}

var s1 := Test{}
var s2 := Test{test:=[s1]}

exception:

Caused by: java.sql.BatchUpdateException: Column '_Test_id' specified twice

Log in to post comments