In looking at the docs for Play Scala Anorm, they show specifying a alternate table name as using this syntax:
object Country extends Magic[Country]().using("Countries")
When i try to use this i get:
Error raised is : ';' expected but '.' found.
What is the correct Scala syntax for this to work?