I am learning slick. A bit of tough road initially. The blogs and other posts out there really help. This tutorial was especially helpful.
My domain was storing note objects in database and tracking revisions. Here's the table structure:
class Notes(tag: Tag) extends Table[(Int, Int, java.sql.Timestamp, Boolean, Option[String])](tag, "Notes") {
// some dbs cannot return compound primary key, so use a standard int
def id = column[Int]("id", O.AutoInc, O.PrimaryKey)
def docId = column[Int]("docId")
def createdOn = column[java.sql.Timestamp]("createdOn")
def content = column[Option[String]]("content")