Skip to content

Commit

Permalink
fix(ModuleConfig): Add PostgresGrammar alias to WireBox
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Mar 26, 2018
1 parent 943278a commit eca03f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ component {
.property( name = "interceptorService", value = interceptorService )
.asSingleton();

binder.map( "PostgresGrammar@qb" )
.to( "qb.models.Grammars.PostgresGrammar" )
.property( name = "interceptorService", value = interceptorService )
.asSingleton();

binder.map( "OracleGrammar@qb" )
.to( "qb.models.Grammars.OracleGrammar" )
.property( name = "interceptorService", value = interceptorService )
Expand Down

0 comments on commit eca03f0

Please sign in to comment.