Phototag.php 203 Bytes
Newer Older
1
<?php
2
class Phototag extends Doctrine_Entity {
3 4 5
    public static function initMetadata($class) {
        $class->setColumn('photo_id', 'integer');
        $class->setColumn('tag_id', 'integer');
6 7
    }
}