When I have 2 or more parameters - it works, but when 1 - it not compiles. Tuple is for 2 or more parameters functions, I know. But if I wan't the table with only one value?
case class Some(name: String)
class SomeTable(tag: Tag) extends Table[Some](tag, "Some") {
def name = column[String]("SomeNAME", O.PrimaryKey)
override def * = name <>(Some.tupled, Some.unapply)
}