Skip to content

Commit

Permalink
fix(tpostgressqldatabase): fix wrong duplicate variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Itee committed Jul 29, 2019
1 parent e6f30ce commit d4c8278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/postgresql/TPostgreSQLDatabase.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
*
*/

import * as PostgreSQLDriver from 'pg-promise'
import * as PostgreSQL from 'pg-promise'
import { TAbstractDatabase } from '../core/databases/TAbstractDatabase'

const PostgreSQLDriver = PostgreSQLDriver( {} )
const PostgreSQLDriver = PostgreSQL( {} )

class TPostgreSQLDatabase extends TAbstractDatabase {

Expand Down

0 comments on commit d4c8278

Please sign in to comment.