From 397a763c49ea8b9585405e711f92969191c0c613 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Wed, 7 May 2014 12:53:42 +0200
Subject: [PATCH] add a getter for the table

---
 lib/private/db/migrationexception.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php
index f257534812f..f3c908aa40a 100644
--- a/lib/private/db/migrationexception.php
+++ b/lib/private/db/migrationexception.php
@@ -16,4 +16,11 @@ class MigrationException extends \Exception {
 		$this->$table = $table;
 		parent::__construct($message);
 	}
+
+	/**
+	 * @return string
+	 */
+	public function getTable() {
+		return $this->table;
+	}
 }
-- 
GitLab