Slick 3 Sequence
DBIO.seq() is NOT EQUAL to DBIO.sequence()
action1 = User.tableQuery.filter(.id === id).result.head action2 = User.tableQuery.filter(.name === name).result.head
DBIO.seq() -> you can just add your DBIO actions like that DBIO.seq((action1,action2))
DBIO.seqence() -> you need add a Sequence of DBIO actions like that DBIO.seqence(Seq(action1,action2))