1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/Phototag.php

8 lines
194 B
PHP
Raw Normal View History

<?php
class Phototag extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('photo_id', 'integer');
$this->hasColumn('tag_id', 'integer');
}
}