add an URI index to blogs so they get cached
This commit is contained in:
parent
44753d64ea
commit
af0eded741
@ -63,7 +63,7 @@ class Blog_entry extends Managed_DataObject
|
|||||||
|
|
||||||
function staticGet($k, $v=null)
|
function staticGet($k, $v=null)
|
||||||
{
|
{
|
||||||
return Managed_DataObject::staticGet('blog_entry', $k, $v);
|
return Managed_DataObject::staticGet('Blog_entry', $k, $v);
|
||||||
}
|
}
|
||||||
|
|
||||||
static function schemaDef()
|
static function schemaDef()
|
||||||
@ -99,12 +99,14 @@ class Blog_entry extends Managed_DataObject
|
|||||||
'description' => 'date this record was created'),
|
'description' => 'date this record was created'),
|
||||||
),
|
),
|
||||||
'primary key' => array('id'),
|
'primary key' => array('id'),
|
||||||
|
'unique keys' => array(
|
||||||
|
'blog_entry_uri_key' => array('uri'),
|
||||||
|
),
|
||||||
'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(
|
'indexes' => array(
|
||||||
'blog_entry_created_idx' => array('created'),
|
'blog_entry_created_idx' => array('created')
|
||||||
'blog_entry_uri_idx' => array('uri'),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user