in app/domain/image/ImageRepository.scala [30:37]
def create(): Future[Option[Long]] = {
val timestamp = new Timestamp(System.currentTimeMillis())
val imageRow = ImageRow(0, "", timestamp, 0)
val action = for {
id <- Image returning Image.map(_.id) += imageRow
} yield Some(id)
db.run(action)
}