From: Michael J. Rubinsky Date: Thu, 7 Oct 2010 14:20:11 +0000 (-0400) Subject: fix user_uid column name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d90ace51da5f43544f2e1b51652ec62f6cb4aaeb;p=horde.git fix user_uid column name --- 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'); } }