Added missing index declarations.

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Haeder 2014-08-18 15:16:22 +02:00 committed by Mikael Nordfeldth
parent d1f5baa982
commit c1a0132cab
2 changed files with 7 additions and 3 deletions

View File

@ -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')),
),

View File

@ -97,12 +97,13 @@ class Blog_entry extends Managed_DataObject
'unique keys' => array(
'blog_entry_uri_key' => array('uri'),
),
'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')),
),
'indexes' => array(
'blog_entry_created_idx' => array('created')
),
);
}