When using Anorm I want to use a different table name for the User case class:
object User extends Magic[User]().using("users")
But I get the following compilation error:
The file /app/models/User.scala could not be compiled. Error raised is : ';' expected but '.' found.
object User extends MagicUser↓.using("users")
Is this a bug of Anorm?