0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Add alternative names for pg

refs #3864
- map alternative valid pg names to pg
This commit is contained in:
Fabian Becker 2014-09-01 21:29:12 +00:00
parent 17f5ce6a2c
commit 33a6b3d6a6

View file

@ -6,5 +6,7 @@ var sqlite3 = require('./sqlite3'),
module.exports = {
sqlite3: sqlite3,
mysql: mysql,
pg: pg
pg: pg,
postgres: pg,
postgresql: pg
};