Added missing index declarations.
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
d1f5baa982
commit
c1a0132cab
|
@ -30,6 +30,9 @@ class User_username extends Managed_DataObject
|
||||||
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
|
||||||
),
|
),
|
||||||
'primary key' => array('provider_name', 'username'),
|
'primary key' => array('provider_name', 'username'),
|
||||||
|
'indexes' => array(
|
||||||
|
'user_id_idx' => array('user_id')
|
||||||
|
),
|
||||||
'foreign keys' => array(
|
'foreign keys' => array(
|
||||||
'user_username_user_id_fkey' => array('user', array('user_id' => 'id')),
|
'user_username_user_id_fkey' => array('user', array('user_id' => 'id')),
|
||||||
),
|
),
|
||||||
|
|
|
@ -97,12 +97,13 @@ class Blog_entry extends Managed_DataObject
|
||||||
'unique keys' => array(
|
'unique keys' => array(
|
||||||
'blog_entry_uri_key' => array('uri'),
|
'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(
|
'foreign keys' => array(
|
||||||
'blog_entry_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
|
'blog_entry_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
|
||||||
),
|
),
|
||||||
'indexes' => array(
|
|
||||||
'blog_entry_created_idx' => array('created')
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user