From d90ace51da5f43544f2e1b51652ec62f6cb4aaeb Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Thu, 7 Oct 2010 10:20:11 -0400 Subject: [PATCH] fix user_uid column name --- mnemo/migration/1_mnemo_base_tables.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mnemo/migration/1_mnemo_base_tables.php b/mnemo/migration/1_mnemo_base_tables.php index c9ce81936..1a30612f8 100644 --- a/mnemo/migration/1_mnemo_base_tables.php +++ b/mnemo/migration/1_mnemo_base_tables.php @@ -72,12 +72,12 @@ class MnemoBaseTables extends Horde_Db_Migration_Base if (!in_array('mnemo_shares_users', $tableList)) { $t = $this->createTable('mnemo_shares_users'); $t->column('share_id', 'integer', array('null' => false)); - $t->column('user_id', 'string', array('limit' => 255)); + $t->column('user_uid', 'string', array('limit' => 255)); $t->column('perm', 'integer', array('null' => false)); $t->end(); $this->addIndex('mnemo_shares_users', 'share_id'); - $this->addIndex('mnemo_shares_users', 'user_id'); + $this->addIndex('mnemo_shares_users', 'user_uid'); $this->addIndex('mnemo_shares_users', 'perm'); } } -- 2.11.0