(refs #341)Add TODO about Slick 2.0 migration

This commit is contained in:
Naoki Takezoe
2014-07-06 16:21:25 +09:00
parent 7aca24e51d
commit 5c70cd654c
3 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package object model extends {
// TODO
// TODO [Slick 2.0]Should be configurable?
val profile = slick.driver.H2Driver
// TODO [Slick 2.0]To avoid compilation error about delete invocation. Why can't this error be resolved by import profile.simple._?
val simple = profile.simple
} with AccountComponent

View File

@@ -2,6 +2,7 @@ package service
import model._
import simple._
// TODO [Slick 2.0]NOT import directly?
import model.dateColumnType
import service.SystemSettingsService.SystemSettings
import util.StringUtil._

View File

@@ -2,6 +2,7 @@ package service
import model._
import simple._
// TODO [Slick 2.0]NOT import directly?
import model.dateColumnType
trait MilestonesService {