Error.php 369 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<?php
class Error extends Doctrine_Record {
    public function setUp() {
        $this->ownsMany('Description', 'Description.file_md5', 'file_md5');
    }
    public function setTableDefinition() {
        $this->hasColumn('message', 'string',200);
        $this->hasColumn('code', 'integer',11);
        $this->hasColumn('file_md5', 'string',32, 'primary');
    }
}