summaryrefslogtreecommitdiff
path: root/includes/database/pgsql/install.inc
blob: 921e2140291f43455c76363dcff032eb533468e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
// $Id$

// PostgreSQL specific install functions

class DatabaseInstaller_pgsql extends DatabaseInstaller {
  protected $pdoDriver = 'pgsql';
  public function name() {
    return 'PostgreSQL';
  }
}