Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #80 from djx314/develop
Browse files Browse the repository at this point in the history
Fix compile error when import a different driver.
  • Loading branch information
Renato Cavalcanti committed Jun 21, 2016
2 parents 06628e6 + df26af3 commit 3d95dfb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import io.strongtyped.active.slick.DBIOExtensions._
import io.strongtyped.active.slick.exceptions.{NoRowsAffectedException, RowNotFoundException}
import slick.ast.BaseTypedType
import slick.dbio.{FailureAction, SuccessAction}
import slick.profile.RelationalProfile

import scala.concurrent.ExecutionContext
import scala.language.{existentials, higherKinds, implicitConversions}
Expand All @@ -18,7 +19,7 @@ abstract class EntityActions extends EntityActionsLike {

protected implicit lazy val btt: BaseTypedType[Id] = baseTypedType

type EntityTable <: Table[Entity]
type EntityTable <: RelationalProfile#Table[Entity]

def tableQuery: TableQuery[EntityTable]

Expand Down

0 comments on commit 3d95dfb

Please sign in to comment.