https://kotlinlang.org logo
#exposed
Title
# exposed
n

nrobi

04/10/2020, 9:59 AM
Hey, anyone having this problem?
t

tapac

04/10/2020, 12:52 PM
Do you expirience it on existing schema or on a newly created?
n

nrobi

04/11/2020, 4:28 AM
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