Quando você quiser testar seus modelos (acesso a bancos de dados, webservices, etc) usando o console do Activator / Play 2.x da Typesafe, você precisa habilitar o ambiente do aplicativo:
//First Run the Activator
$./activator
//once in he shell tun the console
[my_project] $ console
//load the project!
scala> new play.core.StaticApplication(new java.io.File("."))
//Now load your models or other resources to test.
scala> import models._
//HAVE FUN!
scala> MyModel.count()