Skip to content

Commit

Permalink
#67 Fix silly error in date conversion field name
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Dec 30, 2016
1 parent 884e456 commit d9ffad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thehive-backend/app/models/Migration.scala
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ class Migration @Inject() (
mapAttribute(Seq("case", "case_task", "case_artifact_job"), "endDate")(convertDate),
mapAttribute("misp", "date")(convertDate),
mapAttribute("misp", "publishDate")(convertDate),
mapAttribute(_ true, "createdBy", convertDate),
mapAttribute(_ true, "updatedBy", convertDate))
mapAttribute(_ true, "createdAt", convertDate),
mapAttribute(_ true, "updatedAt", convertDate))
}

private val requestCounter = new java.util.concurrent.atomic.AtomicInteger(0)
Expand Down

0 comments on commit d9ffad7

Please sign in to comment.