diff options
| author | xue <> | 2007-03-06 20:40:51 +0000 |
|---|---|---|
| committer | xue <> | 2007-03-06 20:40:51 +0000 |
| commit | 8a674fb83fa2dd80bc653745e03b24450a9cf68d (patch) | |
| tree | 83f72026185075b0ffacf5c1996d3424b0e2f31f /demos/chat/protected/App_Code | |
| parent | 2ab695a553abf26e530f5e97c1ea357233d80998 (diff) | |
changed the way to specify active record table.
Diffstat (limited to 'demos/chat/protected/App_Code')
| -rw-r--r-- | demos/chat/protected/App_Code/ChatBufferRecord.php | 4 | ||||
| -rw-r--r-- | demos/chat/protected/App_Code/ChatUserRecord.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/chat/protected/App_Code/ChatBufferRecord.php b/demos/chat/protected/App_Code/ChatBufferRecord.php index 03f94704..f4d53db0 100644 --- a/demos/chat/protected/App_Code/ChatBufferRecord.php +++ b/demos/chat/protected/App_Code/ChatBufferRecord.php @@ -2,14 +2,14 @@ class ChatBufferRecord extends TActiveRecord
{
+ const TABLE='chat_buffer';
+
public $id;
public $for_user;
public $from_user;
public $message;
private $_created_on;
- public static $_tablename='chat_buffer';
-
public function getCreated_On()
{
if($this->_created_on === null)
diff --git a/demos/chat/protected/App_Code/ChatUserRecord.php b/demos/chat/protected/App_Code/ChatUserRecord.php index e5ebc761..b68fbd4d 100644 --- a/demos/chat/protected/App_Code/ChatUserRecord.php +++ b/demos/chat/protected/App_Code/ChatUserRecord.php @@ -2,11 +2,11 @@ class ChatUserRecord extends TActiveRecord
{
+ const TABLE='chat_users';
+
public $username;
private $_last_activity;
- public static $_tablename='chat_users';
-
public function getLast_Activity()
{
if($this->_last_activity === null)
|
