diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-12-08 14:35:57 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-12-09 17:26:53 +0100 |
commit | 8af3991d0cf129316b177731686af547fe39a698 (patch) | |
tree | ad2199f8170ff6091b063eef45d5eefe40f8be30 /lib/private/db | |
parent | 26861a98c59c39901b9127831b7edf0c0a3eff40 (diff) | |
download | nextcloud-server-8af3991d0cf129316b177731686af547fe39a698.tar.gz nextcloud-server-8af3991d0cf129316b177731686af547fe39a698.zip |
Add dropTable to IDBConnection
Diffstat (limited to 'lib/private/db')
-rw-r--r-- | lib/private/db/connection.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/private/db/connection.php b/lib/private/db/connection.php index a6cdf858899..e2d90c8fc82 100644 --- a/lib/private/db/connection.php +++ b/lib/private/db/connection.php @@ -164,6 +164,19 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection { return $msg; } + /** + * Drop a table from the database if it exists + * + * @param string $table table name without the prefix + */ + public function dropTable($table) { + $table = $this->tablePrefix . trim($table); + $schema = $this->getSchemaManager(); + if($schema->tablesExist(array($table))) { + $schema->dropTable($table); + } + } + // internal use /** * @param string $statement |