This commit is contained in:
takezoe
2013-07-01 13:05:37 +09:00
parent 72b1447d68
commit 8e45a8d3dd

View File

@@ -9,7 +9,7 @@ object Milestones extends Table[Milestone]("MILESTONE") with MilestoneTemplate w
def closedDate = column[java.util.Date]("CLOSED_DATE") def closedDate = column[java.util.Date]("CLOSED_DATE")
def * = userName ~ repositoryName ~ milestoneId ~ title ~ description.? ~ dueDate.? ~ closedDate.? <> (Milestone, Milestone.unapply _) def * = userName ~ repositoryName ~ milestoneId ~ title ~ description.? ~ dueDate.? ~ closedDate.? <> (Milestone, Milestone.unapply _)
def ins = userName ~ repositoryName ~ title ~ description.? ~ dueDate.? ~ closedDate.? returning milestoneId def ins = userName ~ repositoryName ~ title ~ description.? ~ dueDate.? ~ closedDate.?
def byPrimaryKey = byMilestone _ def byPrimaryKey = byMilestone _
} }