* Added file description headers
[lhc/web/wiklou.git] / includes / installer / PostgresUpdater.php
1 <?php
2 /**
3 * PostgreSQL-specific updater.
4 *
5 * @file
6 * @ingroup Deployment
7 */
8
9 /**
10 * Class for handling updates to Postgres databases.
11 *
12 * @todo FIXME: Postgres should use sequential updates like Mysql, Sqlite
13 * and everybody else. It never got refactored like it should've. For now,
14 * just wrap the old do_postgres_updates() in this class so we can clean up
15 * the higher-level stuff.
16 *
17 * @ingroup Deployment
18 * @since 1.17
19 */
20
21 class PostgresUpdater extends Updater {
22 protected function getCoreUpdateList() {
23 return array();
24 }
25
26 public function doUpdates() {
27 do_postgres_updates();
28 }
29 }