wiki.techinc.nl/includes/installer/PostgresUpdater.php

24 lines
530 B
PHP
Raw Normal View History

<?php
/**
* Class for handling updates to Postgres databases.
*
* @todo FIXME: Postgres should use sequential updates like Mysql, Sqlite
* and everybody else. It never got refactored like it should've. For now,
* just wrap the old do_postgres_updates() in this class so we can clean up
* the higher-level stuff.
*
* @ingroup Deployment
* @since 1.17
*/
class PostgresUpdater extends Updater {
protected function getCoreUpdateList() {
return array();
}
public function doUpdates() {
do_postgres_updates();
}
}