From: Roland Haeder Date: Mon, 18 Aug 2014 13:16:22 +0000 (+0200) Subject: Added missing index declarations. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2c1873fe73b616e7eac2f2144be0c08d0498b9e8;p=quix0rs-gnu-social.git Added missing index declarations. Signed-off-by: Roland Haeder --- diff --git a/classes/User_username.php b/classes/User_username.php index d9f517c548..b252ee3156 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -30,6 +30,9 @@ class User_username extends Managed_DataObject 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), ), 'primary key' => array('provider_name', 'username'), + 'indexes' => array( + 'user_id_idx' => array('user_id') + ), 'foreign keys' => array( 'user_username_user_id_fkey' => array('user', array('user_id' => 'id')), ), diff --git a/plugins/Blog/classes/Blog_entry.php b/plugins/Blog/classes/Blog_entry.php index 20bf4da83f..1f585dce4f 100644 --- a/plugins/Blog/classes/Blog_entry.php +++ b/plugins/Blog/classes/Blog_entry.php @@ -97,12 +97,13 @@ class Blog_entry extends Managed_DataObject 'unique keys' => array( 'blog_entry_uri_key' => array('uri'), ), - 'foreign keys' => array( - 'blog_entry_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), 'indexes' => array( + 'blog_entry_profile_id_idx' => array('profile_id'), 'blog_entry_created_idx' => array('created') ), + 'foreign keys' => array( + 'blog_entry_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), ); }