2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
|
|
|
class Forum_Entry extends Doctrine_Record {
|
|
|
|
public function setTableDefinition() {
|
|
|
|
$this->hasColumn('author', 'string', 50);
|
|
|
|
$this->hasColumn('topic', 'string', 100);
|
|
|
|
$this->hasColumn('message', 'string', 99999);
|
|
|
|
$this->hasColumn('parent_entry_id', 'integer', 10);
|
|
|
|
$this->hasColumn('thread_id', 'integer', 10);
|
|
|
|
$this->hasColumn('date', 'integer', 10);
|
|
|
|
}
|
|
|
|
public function setUp() {
|
2007-09-03 20:01:34 +04:00
|
|
|
$this->hasOne('Forum_Entry as Parent', array('local' => 'id', 'foreign' => 'parent_entry_id'));
|
|
|
|
$this->hasOne('Forum_Thread as Thread', array('local' => 'thread_id', 'foreign' => 'id', 'onDelete' => 'CASCADE'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|