From: Michael J. Rubinsky Date: Thu, 7 Oct 2010 17:56:59 +0000 (-0400) Subject: *sigh* correctly fix key generation. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=280476482b7b7b681c02d7f9d1dd37a864a3b059;p=horde.git *sigh* correctly fix key generation. Time for a break, me thinks :) --- diff --git a/wicked/migration/1_wicked_base_tables.php b/wicked/migration/1_wicked_base_tables.php index 89228c82a..d938c2825 100644 --- a/wicked/migration/1_wicked_base_tables.php +++ b/wicked/migration/1_wicked_base_tables.php @@ -32,7 +32,7 @@ class WickedBaseTables extends Horde_Db_Migration_Base $t->column('version_created', 'integer', array('null' => false)); $t->column('change_author', 'string'); $t->column('change_log', 'text'); - $t->primaryKey('page_id'); + $t->primaryKey(array('page_id')); $t->end(); $this->addIndex('wicked_pages', array('page_name'), array('unique' => true));