dave08
09/30/2021, 11:32 AMSchema.create
only creates my tables once when running h2 in memory dbs in my tests, I need to recreate the connection and tables for each test, but it doesn't do it after the first time... and then all the following tests fail...Recca Chao
09/30/2021, 11:53 AM"jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;"
and make your schema be permanent?dave08
09/30/2021, 12:50 PMSchemaUtil.drop
on all the tables helps... but now it seems like just one column is missing... but it's there in the table definition... 🤕Endre Deak
09/30/2021, 3:18 PMtransaction { .. }
you do transaction(db) { … }
dave08
09/30/2021, 3:39 PM