projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
450e5b0
)
No need to return anything.
author
Jan Schneider
<jan@horde.org>
Thu, 23 Dec 2010 16:19:43 +0000
(17:19 +0100)
committer
Jan Schneider
<jan@horde.org>
Thu, 23 Dec 2010 16:20:28 +0000
(17:20 +0100)
framework/Db/lib/Horde/Db/Migration/Migrator.php
patch
|
blob
|
history
diff --git
a/framework/Db/lib/Horde/Db/Migration/Migrator.php
b/framework/Db/lib/Horde/Db/Migration/Migrator.php
index
30bf5cb
..
ce25e99
100644
(file)
--- a/
framework/Db/lib/Horde/Db/Migration/Migrator.php
+++ b/
framework/Db/lib/Horde/Db/Migration/Migrator.php
@@
-241,7
+241,7
@@
class Horde_Db_Migration_Migrator
$schemaTable = $this->_connection->createTable($this->_schemaTableName, array('primaryKey' => false));
$schemaTable->column('version', 'integer');
$schemaTable->end();
-
return
$this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)');
+ $this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)');
} catch (Exception $e) {}
}