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

codec

03/16/2020, 6:27 AM
In jetbrains.exposed.sql.Transaction.kt version 0.3, there was a
create(vararg tables: Table){}
method. I just updated to exposed version 0.22. What happened to this method!? 😞
I’m not sure, if this was the intended workaround?, but I did find this method to get the desired effect:
Copy code
transaction(db) {
    execInBatch( UsersTable.createStatement())
}
t

tapac

03/16/2020, 9:45 AM
All schema related functions were moved into
ShemaUtils
class
c

codec

03/17/2020, 2:27 AM
@tapac thank you very much andrey :)
@tapac is there a changelog?
5 Views