I tried, for instance:
object WebCache extends Table[(...)]("myschema.mytable") { ... }
But that doesn't work.
Slick now has this functionality:
object WebCache extends Table[(...)](Some("myschema"), "mytable") { ... }
Should work.