save title and description of bookmark

This commit is contained in:
Evan Prodromou 2010-12-18 02:39:24 -05:00
parent 85d54cbdb7
commit 563f067508
1 changed files with 5 additions and 1 deletions

View File

@ -47,6 +47,8 @@ class Notice_bookmark extends Memcached_DataObject
{
public $__table = 'notice_bookmark'; // table name
public $notice_id; // int(4) primary_key not_null
public $title; // varchar(255)
public $description; // text
/**
* Get an instance by key
@ -76,7 +78,9 @@ class Notice_bookmark extends Memcached_DataObject
function table()
{
return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL);
return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
'title' => DB_DATAOBJECT_STR,
'description' => DB_DATAOBJECT_STR);
}
/**