dave08
10/28/2021, 11:31 AMEndre Deak
10/28/2021, 3:33 PMval tables = listOf(...) // creation order
then
SchemaUtilts.create(*tables.toTypedArray())
SchemaUtils.drop(*tables.reversed().toTypedArray())
correct me if I’m wrong but I don’t think Exposed supposed to maintain some meta info about the table hierarchydave08
10/28/2021, 3:35 PMreference("some_field", SomeTable)
that lets it know about what foreign keys to create and how to join tables...Endre Deak
10/28/2021, 5:36 PMtapac
11/05/2021, 2:16 PM