From 280476482b7b7b681c02d7f9d1dd37a864a3b059 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Thu, 7 Oct 2010 13:56:59 -0400 Subject: [PATCH] *sigh* correctly fix key generation. Time for a break, me thinks :) --- wicked/migration/1_wicked_base_tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.11.0