File_Owner.php 245 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
<?php
class File_Owner extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('name', 'string', 255);
    }
	public function setUp() {
        $this->hasOne('Data_File', 'Data_File.file_owner_id');
    }
}