aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/db
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-12-08 14:35:57 +0100
committerRobin Appelman <icewind@owncloud.com>2014-12-09 17:26:53 +0100
commit8af3991d0cf129316b177731686af547fe39a698 (patch)
treead2199f8170ff6091b063eef45d5eefe40f8be30 /lib/private/db
parent26861a98c59c39901b9127831b7edf0c0a3eff40 (diff)
downloadnextcloud-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.php13
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