Hey, anyone having <this> problem?
# exposed
n
Hey, anyone having this problem?
t
Do you expirience it on existing schema or on a newly created?
n
Newly created. Actually the error was causes by
SchemaUtils.createMissingTablesAndColumns()
I was using a vararg of table arguments, where only this last table wasn't yet created. The interesting thing is that I've checked the db, and although it gave me the error it created the table correctly
Replaced it with
create()
with only this table as an argument, and worked as expected