I have to create a Composite Primary key. I have three columns of type string. I came across this solution
def a = Column[String]("a")
def b = Column[String]("b")
def c = Column[String]("c")
def pk = primaryKey("pk_notifications", (a,b,c))
But there is no primary key when i describe the table.