fix creation statement in Exposed

This commit is contained in:
Alexander Nozik 2025-03-16 17:56:44 +03:00
parent 5b1955dbf9
commit 9bf60b5e96

@ -156,7 +156,8 @@ public inline fun <reified T : Any> ExposedTable(
}
transaction(db) {
SchemaUtils.createMissingTablesAndColumns(table)
SchemaUtils.create(table)
}
return ExposedTable(db, table)
}