Phototag.php 194 Bytes
Newer Older
1 2 3 4 5 6 7
<?php
class Phototag extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('photo_id', 'integer');
        $this->hasColumn('tag_id', 'integer');
    }
}