I’m using Play 2.0 with Scala and JPA/Hibernate. Hibernate creates the DB structure automatically and inserts strange columns like bitmap$init$0 what should be due to ebean (as far as I know).
I tried to disable ebean with the following setting in my ApplicationBuild object:
val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
ebeanEnabled := false
)
But the strange columns are generated anyway.
How can I disable ebean?
The pretty simple solution is to upgrade to Play 2.1. Thanks to modularization ebean is not longer included by default.